summary refs log tree commit diff stats
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/perseus/main.go10
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()
+}