mirror of
https://shylinux.com/x/icebergs
synced 2025-06-27 02:37:31 +08:00
12 lines
203 B
Go
12 lines
203 B
Go
package oauth
|
|
|
|
import "shylinux.com/x/ice"
|
|
|
|
type cache struct {
|
|
ice.Hash
|
|
short string `data:"uniq"`
|
|
field string `data:"hash,state,goback"`
|
|
}
|
|
|
|
func init() { ice.Cmd("web.chat.oauth.cache", cache{}) }
|