13 lines
379 B
Go
13 lines
379 B
Go
package server
|
|
|
|
import (
|
|
serverimp "github.com/tech/sendico/billing/fees/internal/server/internal"
|
|
"github.com/tech/sendico/pkg/mlogger"
|
|
"github.com/tech/sendico/pkg/server"
|
|
)
|
|
|
|
// Create constructs the billing fees server implementation.
|
|
func Create(logger mlogger.Logger, file string, debug bool) (server.Application, error) {
|
|
return serverimp.Create(logger, file, debug)
|
|
}
|