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