Add first login route

This commit is contained in:
Achim Rohn
2025-09-17 16:30:18 +02:00
parent 2a3506d21b
commit 8bc7b1e27b
9 changed files with 104 additions and 21 deletions
+7
View File
@@ -0,0 +1,7 @@
package schema
import "golang.org/x/oauth2"
type Credentials struct {
Token oauth2.Token `json:"token"`
}