feat: login via passkey

This commit is contained in:
Jacky 2024-09-15 20:32:03 +08:00
parent 44c3180df7
commit bdfbbd0e8f
No known key found for this signature in database
GPG key ID: 215C21B10DF38B4D
37 changed files with 1529 additions and 643 deletions

View file

@ -29,3 +29,7 @@ func Set(key interface{}, value interface{}, ttl time.Duration) {
func Get(key interface{}) (value interface{}, ok bool) {
return cache.Get(key)
}
func Del(key interface{}) {
cache.Del(key)
}