mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2025-02-23 20:33:57 +00:00
11 lines
250 B
Go
11 lines
250 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 []byte, ttl time.Duration) error
|
|
Get(key string) ([]byte, bool)
|
|
Remove(key string)
|
|
}
|