fix no config panic & wingmate.yaml doc

This commit is contained in:
2024-09-22 10:51:24 +10:00
parent 3c0816f5f3
commit bcb6435b4a
8 changed files with 110 additions and 5 deletions

View File

@@ -4,12 +4,14 @@ type Content interface {
Msg(string)
Msgf(string, ...any)
Str(string, string) Content
Err(error) Content
}
type Level interface {
Info() Content
Warn() Content
Error() Content
Fatal() Content
}
type Log interface {