soft-serve

Fork https://github.com/charmbracelet/soft-serve

git clone git://git.lin.moe/go/soft-serve.git

 1package proto
 2
 3import "time"
 4
 5// AccessToken represents an access token.
 6type AccessToken struct {
 7	ID        int64
 8	Name      string
 9	UserID    int64
10	TokenHash string
11	ExpiresAt time.Time
12	CreatedAt time.Time
13}