Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BoardService ¶
type BoardService interface { GetAllBoards() (*[]datastruct.Board, error) CreateBoard(*datastruct.Board) (*int64, error) }
func NewBoardService ¶
func NewBoardService(dao repository.DAO) BoardService
type TaskService ¶
type TaskService interface { GetAllTasks() (*[]datastruct.Task, error) CreateTask(*datastruct.Task) (*int64, error) UpdateTask(*datastruct.Task) (*datastruct.Task, error) DeleteTask(int64) error }
func NewTaskService ¶
func NewTaskService(dao repository.DAO) TaskService
Click to show internal directories.
Click to hide internal directories.