DE-labtory / zulu

General unified crypto wallet api user can easily manage
Apache License 2.0
8 stars 7 forks source link

fix: add a missing return type to follow `store` interface #55

Closed baumstern closed 4 years ago

baumstern commented 4 years ago

the Store interface:

type Store interface {
    Store(k Key) error
    Get(id string) (Key, error)
    GetAll() ([]Key, error)
}