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