7 lines
104 B
Go
7 lines
104 B
Go
|
package curre
|
||
|
|
||
|
type Logger interface {
|
||
|
Info(msg string, args ...any)
|
||
|
Error(msg string, args ...any)
|
||
|
}
|