mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2024-11-06 06:17:02 +00:00
7e80ade24b
Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://codeberg.org/Codeberg/pages-server/pulls/263 Reviewed-by: 6543 <6543@obermui.de> Co-authored-by: crapStone <me@crapstone.dev> Co-committed-by: crapStone <me@crapstone.dev>
10 lines
260 B
Go
10 lines
260 B
Go
package cache
|
|
|
|
import "time"
|
|
|
|
// ICache is an interface that defines how the pages server interacts with the cache.
|
|
type ICache interface {
|
|
Set(key string, value interface{}, ttl time.Duration) error
|
|
Get(key string) (interface{}, bool)
|
|
Remove(key string)
|
|
}
|