fx build fix
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package notificationimp
|
||||
|
||||
type Config struct {
|
||||
Driver string `yaml:"driver"`
|
||||
Settings map[string]any `yaml:"settings,omitempty"`
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
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)
|
||||
}
|
||||
Reference in New Issue
Block a user