aboutsummaryrefslogtreecommitdiff
path: root/types/auth.go
diff options
context:
space:
mode:
Diffstat (limited to 'types/auth.go')
-rw-r--r--types/auth.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/types/auth.go b/types/auth.go
new file mode 100644
index 0000000..1792011
--- /dev/null
+++ b/types/auth.go
@@ -0,0 +1,6 @@
+package types
+
+type LoginRequest struct {
+ Username string `form:"username"`
+ Password string `form:"password"`
+}