1
0
Fork 0
empact/db/token.go

18 lines
190 B
Go
Raw Normal View History

2015-03-04 20:14:14 +00:00
package db
import (
"time"
)
type (
Token struct {
ID int
Owner string
Token string
Limit int
Remaining int
ResetAt time.Time
CreatedAt time.Time
}
)