mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
12 lines
263 B
Go
12 lines
263 B
Go
package utils
|
|
|
|
type Logger interface {
|
|
IsDev() bool
|
|
Debug(format string, v ...any)
|
|
Info(format string, v ...any)
|
|
Warn(format string, v ...any)
|
|
Err(format string, v ...any)
|
|
Empty()
|
|
SetProcess(format string, v ...any)
|
|
StopProcess(format string, v ...any)
|
|
}
|