12 lines
312 B
Go
12 lines
312 B
Go
package fileservice
|
|
|
|
import (
|
|
"github.com/tech/sendico/pkg/mservice"
|
|
"github.com/tech/sendico/server/interface/api"
|
|
"github.com/tech/sendico/server/internal/server/fileserviceimp"
|
|
)
|
|
|
|
func CreateAPI(a api.API, directory string) (mservice.MicroService, error) {
|
|
return fileserviceimp.CreateAPI(a, directory)
|
|
}
|