sp.go 252 B

12345678910
  1. package interfaces
  2. type ServiceProvider interface {
  3. GetEnvService() Env
  4. GetCacheService() Cache
  5. GetMailerService() Mailer
  6. GetArticleRepository() ArticleRepository
  7. GetTagRepository() TagRepository
  8. GetArticleTagRepository() ArticleTagRepository
  9. }