Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BookService ¶
type BookService interface {
repository.BookRepo
}
BookService contain logic for Book Controller
func NewBookService ¶
func NewBookService(impl BookServiceImpl) BookService
NewBookService return new instance of BookService
type BookServiceImpl ¶
type BookServiceImpl struct {
dig.In
repository.BookRepo
}
BookServiceImpl is implementation of BookService
type DataSourceService ¶ added in v0.8.13
type DataSourceService interface {
repository.DataSourceRepo
}
DataSourceService contain logic for DataSourceController
func NewDataSourceService ¶ added in v0.8.13
func NewDataSourceService(impl DataSourceServiceImpl) DataSourceService
NewDataSourceService return new instance of DataSourceService
type DataSourceServiceImpl ¶ added in v0.8.13
type DataSourceServiceImpl struct {
dig.In
repository.DataSourceRepo
}
DataSourceServiceImpl is implementation of DataSourceService
type LocaleService ¶ added in v0.8.13
type LocaleService interface {
repository.LocaleRepo
}
LocaleService contain logic for LocaleController
func NewLocaleService ¶ added in v0.8.13
func NewLocaleService(impl LocaleServiceImpl) LocaleService
NewLocaleService return new instance of LocaleService
type LocaleServiceImpl ¶ added in v0.8.13
type LocaleServiceImpl struct {
dig.In
repository.LocaleRepo
}
LocaleServiceImpl is implementation of LocaleService
type MusicService ¶ added in v0.8.11
type MusicService interface {
repository.MusicRepo
}
MusicService contain logic for MusicController
func NewMusicService ¶ added in v0.8.11
func NewMusicService(impl MusicServiceImpl) MusicService
NewMusicService return new instance of MusicService
type MusicServiceImpl ¶ added in v0.8.11
type MusicServiceImpl struct {
dig.In
repository.MusicRepo
}
MusicServiceImpl is implementation of MusicService
type TagService ¶ added in v0.8.13
type TagService interface {
repository.TagRepo
}
TagService contain logic for TagController
func NewTagService ¶ added in v0.8.13
func NewTagService(impl TagServiceImpl) TagService
NewTagService return new instance of TagService
type TagServiceImpl ¶ added in v0.8.13
type TagServiceImpl struct {
dig.In
repository.TagRepo
}
TagServiceImpl is implementation of TagService