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

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