Saving response meta

This commit is contained in:
2015-03-05 03:14:14 +07:00
parent 3dbe630464
commit 8ac16bb695
4 changed files with 39 additions and 14 deletions
+17
View File
@@ -0,0 +1,17 @@
package db
import (
"time"
)
type (
Token struct {
ID int
Owner string
Token string
Limit int
Remaining int
ResetAt time.Time
CreatedAt time.Time
}
)