1
0
Fork 0
empact/db/token.go

18 lines
190 B
Go

package db
import (
"time"
)
type (
Token struct {
ID int
Owner string
Token string
Limit int
Remaining int
ResetAt time.Time
CreatedAt time.Time
}
)