icache.go 146 B

12345678910
  1. package cache
  2. import "git.beejay.kim/Craft/Api/service"
  3. type Cache interface {
  4. service.Service
  5. Get(elm Element) error
  6. Set(elm ...Element)
  7. }