summaryrefslogtreecommitdiff
path: root/types
diff options
context:
space:
mode:
Diffstat (limited to 'types')
-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..d22f8d9
--- /dev/null
+++ b/types/auth.go
@@ -0,0 +1,6 @@
+package types
+
+type LoginForm struct {
+ Email string `json:"email" form:"email"`
+ Password string `json:"password" form:"password"`
+}