Commit
+5 -2 +/-3 browse
1 | diff --git a/store.go b/store.go |
2 | index c0400b9..a56ed75 100644 |
3 | --- a/store.go |
4 | +++ b/store.go |
5 | @@ -2,10 +2,11 @@ package main |
6 | |
7 | import ( |
8 | "database/sql" |
9 | - _ "github.com/mattn/go-sqlite3" |
10 | "os" |
11 | "strings" |
12 | "time" |
13 | + |
14 | + _ "github.com/mattn/go-sqlite3" |
15 | ) |
16 | |
17 | // 2018-01-16 19:05:21.752851759+08:00 |
18 | diff --git a/ui.go b/ui.go |
19 | index d36b95b..3123783 100644 |
20 | --- a/ui.go |
21 | +++ b/ui.go |
22 | @@ -2,6 +2,7 @@ package main |
23 | |
24 | import ( |
25 | "fmt" |
26 | + |
27 | "github.com/gizak/termui" |
28 | ) |
29 | |
30 | diff --git a/util.go b/util.go |
31 | index 834da30..b65288a 100644 |
32 | --- a/util.go |
33 | +++ b/util.go |
34 | @@ -2,10 +2,11 @@ package main |
35 | |
36 | import ( |
37 | "fmt" |
38 | - "github.com/fatih/color" |
39 | "os" |
40 | "os/user" |
41 | "time" |
42 | + |
43 | + "github.com/fatih/color" |
44 | ) |
45 | |
46 | func maybe(err error) { |