chore(auth): start refactoring for testable code #181

This commit is contained in:
2024-09-25 22:45:04 +02:00
committed by Tim Wundenberg
parent c932ad2a15
commit 7001a1c2cc
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