You've already forked CasaOS
mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-07-06 23:37:26 +02:00
12 lines
147 B
Go
12 lines
147 B
Go
![]() |
package cache
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/patrickmn/go-cache"
|
||
|
)
|
||
|
|
||
|
func Init() *cache.Cache {
|
||
|
return cache.New(5*time.Minute, 60*time.Second)
|
||
|
}
|