Files
sendico/api/notification/interface/services/notification/notification.go
Stephan D d367dddbbd
Some checks failed
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/fx/1 Pipeline failed
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/fx/2 Pipeline failed
fx build fix
2025-11-08 00:40:01 +01:00

12 lines
295 B
Go

package notification
import (
"github.com/tech/sendico/notification/interface/api"
"github.com/tech/sendico/notification/internal/server/notificationimp"
"github.com/tech/sendico/pkg/mservice"
)
func Create(a api.API) (mservice.MicroService, error) {
return notificationimp.CreateAPI(a)
}