cake-order-tracker/internal/models/auth.go

8 lines
94 B
Go

package models
import "time"
type Token struct {
User string
Expiration time.Time
}