7 lines
111 B
Go
7 lines
111 B
Go
|
|
package icmp
|
||
|
|
|
||
|
|
type Logger interface {
|
||
|
|
Debugf(format string, args ...any)
|
||
|
|
Warnf(format string, args ...any)
|
||
|
|
}
|