vegvisir/pkg/cache/datastore.go
Piotr Biernat ea6c90236a
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Renamed src/ to pkg/
Added cache with base redis support
Added profiling in main.go
2021-07-23 16:10:37 +02:00

17 lines
513 B
Go

// ___ ____ ___ ___
// \ \ / / | _ | __| \ \ / / || | __ || || _ |
// \ \/ / |___ | |__ \ \/ / || |___ || ||___|
// \ / | _ | _ | \ / || __ | || ||\\
// \/ |___ |___ | \/ || ____| || || \\
//
// 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)
}