This repository has been archived on 2022-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
elon-eats-my-tweets/twitter/types.go

14 lines
273 B
Go

package twitter
//go:generate mockery --recursive --name Store --output ../generated/mocks
import (
"context"
"git.netflux.io/rob/elon-eats-my-tweets/generated/store"
)
type Store interface {
CreateUser(context.Context, store.CreateUserParams) (store.User, error)
}