removed 'internal' directory

This commit is contained in:
Bronku 2025-06-19 21:48:06 +02:00
parent 8c200a5a6c
commit 65709049d7
42 changed files with 35 additions and 44 deletions

8
models/auth.go Normal file
View file

@ -0,0 +1,8 @@
package models
import "time"
type Token struct {
User string
Expiration time.Time
}