summaryrefslogtreecommitdiff
path: root/src/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.go')
-rw-r--r--src/main.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main.go b/src/main.go
new file mode 100644
index 0000000..f5ba944
--- /dev/null
+++ b/src/main.go
@@ -0,0 +1,13 @@
+package server
+
+import (
+ "fmt"
+ "net/http"
+
+ "github.com/joho/godotenv"
+ _ "github.com/mattn/go-sqlite3"
+)
+
+func main() {
+ err := godotenv.Load()
+}