home to your local SPACEGIRL 馃挮 arimelody.space
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 13 lines 340 B view raw
1package model 2 3import ( 4 "time" 5) 6 7type TOTP struct { 8 Name string `json:"name" db:"name"` 9 AccountID string `json:"accountID" db:"account"` 10 Secret string `json:"-" db:"secret"` 11 CreatedAt time.Time `json:"created_at" db:"created_at"` 12 Confirmed bool `json:"-" db:"confirmed"` 13}