diff options
author | Andinus <andinus@nand.sh> | 2020-03-26 20:48:15 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-03-26 20:48:15 +0530 |
commit | b89fcdbe3d9f5083090bd07753cb04de2c5ef6c2 (patch) | |
tree | ece573069b1b22d24d22e363d8f0b287d6688d55 /cmd | |
parent | 80c9e876b0ed1a5fb84e31cb06837466c006fa9e (diff) | |
download | perseus-b89fcdbe3d9f5083090bd07753cb04de2c5ef6c2.tar.gz |
Add cmd/perseus & remove unused imports
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/perseus/main.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cmd/perseus/main.go b/cmd/perseus/main.go new file mode 100644 index 0000000..1533a3c --- /dev/null +++ b/cmd/perseus/main.go @@ -0,0 +1,10 @@ +package main + +import ( + "tildegit.org/andinus/perseus/storage" +) + +func main() { + db := storage.Init() + defer db.Conn.Close() +} |