mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
21 lines
431 B
Go
21 lines
431 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
const CtxKeyAuthorizedUser = "ckau"
|
|
|
|
const CacheKeyOauth2State = "p:a:state"
|
|
|
|
type Common struct {
|
|
ID uint64 `gorm:"primary_key"`
|
|
CreatedAt time.Time `sql:"index"`
|
|
UpdatedAt time.Time
|
|
DeletedAt *time.Time `sql:"index"`
|
|
}
|
|
|
|
type Response struct {
|
|
Code int `json:"code,omitempty"`
|
|
Message string `json:"message,omitempty"`
|
|
Result interface{} `json:"result,omitempty"`
|
|
}
|