From 32ee8047eba06c9f1c7575b66fc0f9195657ac04 Mon Sep 17 00:00:00 2001 From: Bobby <30593201+luciferreeves@users.noreply.github.com> Date: Mon, 22 Dec 2025 13:46:50 +0530 Subject: auth engine, basic login working --- types/auth.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 types/auth.go (limited to 'types/auth.go') 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"` +} -- cgit v1.2.3