Files
sendico/api/server/interface/services/recipient/recipient.go
2025-12-05 02:52:02 +01:00

12 lines
274 B
Go

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