summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-03-25 12:08:35 -0600
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-03-25 12:08:35 -0600
commit27aab70386c68f3a0f22c52e72b91cf16b289100 (patch)
tree9194b74d8663cedf9d6677b5bd900404583139d4 /src
downloadhatecomputers.club-27aab70386c68f3a0f22c52e72b91cf16b289100.tar.gz
hatecomputers.club-27aab70386c68f3a0f22c52e72b91cf16b289100.zip
initial commit
Diffstat (limited to 'src')
-rw-r--r--src/database/users.go3
-rw-r--r--src/main.go13
2 files changed, 16 insertions, 0 deletions
diff --git a/src/database/users.go b/src/database/users.go
new file mode 100644
index 0000000..06e5808
--- /dev/null
+++ b/src/database/users.go
@@ -0,0 +1,3 @@
+func getUsers() {
+
+}
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()
+}