chore(auth): start refactoring for testable code #181
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 45s

This commit is contained in:
2024-09-25 22:45:04 +02:00
parent 7681e619ea
commit bd721a1e48
7 changed files with 237 additions and 62 deletions

View File

@@ -1,6 +1,14 @@
package types
import "github.com/google/uuid"
import (
"errors"
"github.com/google/uuid"
)
var (
InternalServerError = errors.New("Internal server error")
)
type User struct {
Id uuid.UUID