vegvisir/pkg/cache/datastore.go

17 lines
513 B
Go
Raw Normal View History

// ___ ____ ___ ___
// \ \ / / | _ | __| \ \ / / || | __ || || _ |
// \ \/ / |___ | |__ \ \/ / || |___ || ||___|
// \ / | _ | _ | \ / || __ | || ||\\
// \/ |___ |___ | \/ || ____| || || \\
//
// Copyright (c) 2021 Piotr Biernat. https://pbiernat.dev. MIT License
// Repo: https://git.pbiernat.dev/golang/vegvisir
package cache
type CacheDatastore interface {
SetKey(string, interface{}, int) error
GetKey(string) (interface{}, error)
2021-07-08 22:21:07 +02:00
}