aboutsummaryrefslogtreecommitdiff
path: root/src/user/user.go
diff options
context:
space:
mode:
authorAlexander Kavon <hawk@alexkavon.com>2023-11-27 14:48:44 -0500
committerAlexander Kavon <hawk@alexkavon.com>2023-11-27 14:48:44 -0500
commit1d05f918887e9ba4576149513e5df0bb57e6bd72 (patch)
tree2f5e94e21f90183509fe1ae52905c47d67a3c5d0 /src/user/user.go
parent8a30281eff35623d1a68642e4d94c814d1b47a0c (diff)
config updates, rename user model, load auth routes, initial templating poc
Diffstat (limited to 'src/user/user.go')
-rw-r--r--src/user/user.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/user/user.go b/src/user/user.go
new file mode 100644
index 0000000..9845b1b
--- /dev/null
+++ b/src/user/user.go
@@ -0,0 +1,6 @@
+package user
+
+type User struct {
+ Id int64 `json:"id"`
+ Username string `json:"username"`
+}