remove statuscode.RenderHelp #1

Open
roberto wants to merge 4 commits from feature/no-more-help-status-code into main
1 changed files with 5 additions and 0 deletions
Showing only changes of commit 4ffa7ba364 - Show all commits

View File

@ -4,6 +4,7 @@ package logger
import (
"context"
"io"
"git.rob.mx/nidito/chinampa/pkg/runtime"
"github.com/sirupsen/logrus"
@ -47,6 +48,10 @@ func Configure(name string, level Level) {
}
}
func SetOutput(out io.Writer) {
logrus.SetOutput(out)
}
func Debug(args ...any) {
Main.Debug(args...)
}