mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
3c2dc78c93
feat: introduce key-value store feat: imprint page (resolve #23) chore: remove default user chore: remove packr
17 lines
266 B
Go
17 lines
266 B
Go
package models
|
|
|
|
import "github.com/jinzhu/gorm"
|
|
|
|
const (
|
|
UserKey = "user"
|
|
ImprintKey = "imprint"
|
|
AuthCookieKey = "wakapi_auth"
|
|
)
|
|
|
|
type MigrationFunc func(db *gorm.DB) error
|
|
|
|
type KeyStringValue struct {
|
|
Key string `gorm:"primary_key"`
|
|
Value string
|
|
}
|