mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
Move and refactor files and some more changes :3
This commit is contained in:
parent
781e520591
commit
303689ecbb
29 changed files with 1305 additions and 1160 deletions
12
utils/logger.go
Normal file
12
utils/logger.go
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue