You've already forked CasaOS
mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2026-04-30 19:58:55 +02:00
8bca76b78b
add casaOS logs add application terminal add application logs
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)
|
|
}
|