README ¶ THREEDB NOTE : EXPRIMENTAL THIS IS STILL IN VERY EARLY STAGES Expand ▾ Collapse ▴ Documentation ¶ Index ¶ type Store func NewThreeDB(driver string) *Store func (s *Store) Create(key string, value string) error func (s *Store) Delete(key, value string) error func (s *Store) Get(key string) (*firestore.DocumentSnapshot, error) func (s *Store) Update(key string) error type ThreeDBInterface Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Store ¶ type Store struct { // contains filtered or unexported fields } func NewThreeDB ¶ func NewThreeDB(driver string) *Store func (*Store) Create ¶ func (s *Store) Create(key string, value string) error func (*Store) Delete ¶ func (s *Store) Delete(key, value string) error func (*Store) Get ¶ func (s *Store) Get(key string) (*firestore.DocumentSnapshot, error) func (*Store) Update ¶ func (s *Store) Update(key string) error TODO type ThreeDBInterface ¶ type ThreeDBInterface interface { Get(key string) (*firestore.DocumentSnapshot, error) Create(key string, value string) error Delete(key string, value string) error Update(key string) error } Source Files ¶ View all Source files threedb.go Directories ¶ Show internal Expand all Path Synopsis pkg Click to show internal directories. Click to hide internal directories.