12 lines
162 B
Go
12 lines
162 B
Go
package notficationservice
|
|
|
|
type Service struct {
|
|
store NotificationStore
|
|
}
|
|
|
|
func New(store NotificationStore) *Service {
|
|
return &Service{
|
|
store: store,
|
|
}
|
|
}
|