empact/db/token.go
2015-03-05 19:57:36 +07:00

22 lines
223 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
}
)
func UpdateToken(t *Token) {
}