init_service.go 154 B

123456789101112131415
  1. package service
  2. type InitService interface {
  3. }
  4. type initService struct {
  5. }
  6. func NewInitService() InitService {
  7. return &initService{
  8. }
  9. }