Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BookService ¶
type BookService struct {
// contains filtered or unexported fields
}
func NewBookService ¶
func NewBookService(dao bookDAO) *BookService
NewBookService creates a new BookService with the given book DAO.
type PostService ¶
type PostService struct {
// contains filtered or unexported fields
}
func NewPostService ¶
func NewPostService(dao postDAO) *PostService
NewPostService creates a new PostService with the given post DAO.
func (*PostService) FindAllByTag ¶
func (s *PostService) FindAllByTag(tagName string) ([]models.Post, error)
type ProjectService ¶
type ProjectService struct {
// contains filtered or unexported fields
}
func NewProjectService ¶
func NewProjectService(dao projectDAO) *ProjectService
NewProjectService creates a new ProjectService with the given project DAO.
type SectionService ¶
type SectionService struct {
// contains filtered or unexported fields
}
func NewSectionService ¶
func NewSectionService(dao sectionDAO) *SectionService
NewSectionService creates a new SectionService with the given section DAO.
type TagService ¶
type TagService struct {
// contains filtered or unexported fields
}
func NewTagService ¶
func NewTagService(dao tagDAO) *TagService
NewTagService creates a new TagService with the given tag DAO.
Click to show internal directories.
Click to hide internal directories.