Yimaru-BackEnd/internal/services/notfication/service.go
2025-04-01 19:01:42 +03:00

12 lines
162 B
Go

package notficationservice
type Service struct {
store NotificationStore
}
func New(store NotificationStore) *Service {
return &Service{
store: store,
}
}