16 lines
291 B
Go
Executable File
16 lines
291 B
Go
Executable File
package storage
|
|
|
|
import "errors"
|
|
|
|
type Account struct {
|
|
ID string `json:"_id"`
|
|
}
|
|
|
|
func (s *Storage) Accounts(token string) ([]Account, error) {
|
|
return nil, errors.New("not impl")
|
|
}
|
|
|
|
func (s *Storage) PrimaryAccounts(token string) ([]Account, error) {
|
|
return nil, errors.New("not impl")
|
|
}
|