This commit is contained in:
Stephan D
2026-02-12 12:47:39 +01:00
parent f4b43f7218
commit 97395acd8f
8 changed files with 271 additions and 24 deletions

View File

@@ -6,6 +6,7 @@ import (
"github.com/tech/sendico/pkg/server"
)
//nolint:ireturn // factory returns interface by design
func Create(logger mlogger.Logger, file string, debug bool) (server.Application, error) {
return serverimp.Create(logger, file, debug)
return serverimp.Create(logger, file, debug) //nolint:wrapcheck
}