Files
sendico/api/server/interface/services/verification/verification.go
2026-02-10 01:55:33 +01:00

12 lines
283 B
Go

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