diff options
author | Philip O'Toole <philip.otoole@yahoo.com> | 2016-02-28 11:46:49 -0800 |
---|---|---|
committer | Philip O'Toole <philip.otoole@yahoo.com> | 2016-02-28 11:51:49 -0800 |
commit | 960d6a342ac848cabaee090656a2ae54d6cb1f13 (patch) | |
tree | 6c857c6d4ca5bdf231baa052a532e6ef5e47ce05 /_example/hook | |
parent | Merge pull request #275 from otoolep/fix_typos (diff) | |
download | golite-960d6a342ac848cabaee090656a2ae54d6cb1f13.tar.gz golite-960d6a342ac848cabaee090656a2ae54d6cb1f13.tar.xz |
Alphabetical imports
Diffstat (limited to '_example/hook')
-rw-r--r-- | _example/hook/hook.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/_example/hook/hook.go b/_example/hook/hook.go index 3059f9e..c9f41a2 100644 --- a/_example/hook/hook.go +++ b/_example/hook/hook.go @@ -2,9 +2,10 @@ package main import ( "database/sql" - "github.com/mattn/go-sqlite3" "log" "os" + + "github.com/mattn/go-sqlite3" ) func main() { |