Files
sendico/api/edge/bff/internal/server/server.go
2026-02-28 00:39:20 +01:00

12 lines
312 B
Go
Executable File

package server
import (
"github.com/tech/sendico/pkg/mlogger"
"github.com/tech/sendico/pkg/server"
serverimp "github.com/tech/sendico/server/internal/server/internal"
)
func Create(logger mlogger.Logger, file string, debug bool) (server.Application, error) {
return serverimp.Create(logger, file, debug)
}