mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
feat: login via passkey
This commit is contained in:
parent
44c3180df7
commit
bdfbbd0e8f
37 changed files with 1529 additions and 643 deletions
4
internal/cache/cache.go
vendored
4
internal/cache/cache.go
vendored
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue