wechaty/go-wechaty

View on GitHub
wechaty-puppet/memory-card/storage/backend.go

Summary

Maintainability
A
0 mins
Test Coverage
package storage

type IStorage interface {
  Save(payload map[string]interface{}) error
  Load() (map[string]interface{}, error)
  Destroy() error
}