forked from cwtch.im/cwtch
1
0
Fork 0
cwtch/storage/profile_store.go

12 lines
228 B
Go

package storage
import (
"cwtch.im/cwtch/peer"
)
// ProfileStore is an interface to managing the storage of Cwtch Profiles
type ProfileStore interface {
Save(cwtchPeer peer.CwtchPeer) error
Load() (peer.CwtchPeer, error)
}