From d30b9f8c30ce8ac4a5ba2f8550d528549d3da0b6 Mon Sep 17 00:00:00 2001 From: Tim Wundenberg Date: Fri, 27 Sep 2024 23:21:37 +0200 Subject: [PATCH] chore: extract mail to it's own service #181 --- handler/auth_test.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 handler/auth_test.go diff --git a/handler/auth_test.go b/handler/auth_test.go new file mode 100644 index 0000000..921902a --- /dev/null +++ b/handler/auth_test.go @@ -0,0 +1,11 @@ +package handler + +import ( + "testing" +) + +func TestHandleSignIn(t *testing.T) { + t.Parallel() + t.Run("should signIn and return session cookie", func(t *testing.T) { + }) +}