wip: start simple

This commit is contained in:
2023-08-28 18:12:31 +10:00
parent ec3b108111
commit a4ba011b36
16 changed files with 768 additions and 0 deletions

16
logger/logger.go Normal file
View File

@@ -0,0 +1,16 @@
package logger
type Content interface {
Msg(string)
Msgf(string, ...any)
}
type Level interface {
Info() Content
Warn() Content
Error() Content
}
type Log interface {
Level
}