8 lines
125 B
Go
8 lines
125 B
Go
|
|
package pmtud
|
||
|
|
|
||
|
|
type Logger interface {
|
||
|
|
Debug(msg string)
|
||
|
|
Debugf(msg string, args ...any)
|
||
|
|
Warnf(msg string, args ...any)
|
||
|
|
}
|