12 lines
283 B
Go
12 lines
283 B
Go
package organization
|
|
|
|
import (
|
|
"github.com/tech/sendico/pkg/mservice"
|
|
"github.com/tech/sendico/server/interface/api"
|
|
"github.com/tech/sendico/server/internal/server/organizationimp"
|
|
)
|
|
|
|
func Create(a api.API) (mservice.MicroService, error) {
|
|
return organizationimp.CreateAPI(a)
|
|
}
|