IStore.go 128 B

12345678910
  1. package main
  2. import (
  3. )
  4. type IStore interface {
  5. Set(key string, bytess []byte)
  6. Remove(key string)
  7. All()map[string][]byte
  8. }