From 8d40fb6fbb87c999b6ef24c3a51621edb5d1388e Mon Sep 17 00:00:00 2001 From: shy Date: Mon, 16 Jun 2025 13:39:17 +0800 Subject: [PATCH] add some --- core/chat/oauth/cache.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 core/chat/oauth/cache.go diff --git a/core/chat/oauth/cache.go b/core/chat/oauth/cache.go new file mode 100644 index 00000000..a9ce326d --- /dev/null +++ b/core/chat/oauth/cache.go @@ -0,0 +1,11 @@ +package oauth + +import "shylinux.com/x/ice" + +type cache struct { + ice.Hash + short string `data:"uniq"` + field string `data:"hash,state,client,goback"` +} + +func init() { ice.Cmd("web.chat.oauth.cache", cache{}) }