Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ProviderSet = wire.NewSet(NewImpl, repo.ProviderSet)
ProviderSet is a provider set for wire
Functions ¶
This section is empty.
Types ¶
type IBiz ¶
type IBiz interface { // GetByID serve user to get a task by id GetByID(ctx contextx.Contextx, id string) (*pb.Task, error) // List serve user to list all tasks List(ctx contextx.Contextx, page, size int) ([]*pb.Task, error) // Count serve user to count all tasks Count(ctx contextx.Contextx) (int, error) // Create serve user to create a task Create(ctx contextx.Contextx, task *pb.Task) (*pb.Task, error) // ModifyTitle serve user to modify title of task ModifyTitle(ctx contextx.Contextx, id, title string) (t *pb.Task, err error) // UpdateStatus serve user to update status of task UpdateStatus(ctx contextx.Contextx, id string, status pb.Status) (t *pb.Task, err error) // Delete serve user to delete a task by id Delete(ctx contextx.Contextx, id string) error }
IBiz declare todo biz service function
Click to show internal directories.
Click to hide internal directories.