sp.go 311 B

123456789101112
  1. package interfaces
  2. type ServiceProvider interface {
  3. GetEnvService() Env
  4. GetCacheService() Cache
  5. GetMailerService() Mailer
  6. GetAuthService() Auth
  7. GetArticleRepository() ArticleRepository
  8. GetTagRepository() TagRepository
  9. GetArticleTagRepository() ArticleTagRepository
  10. GetUserRepository() UserRepository
  11. }