8 lignes
132 o
Go
8 lignes
132 o
Go
|
package gorequest
|
||
|
|
||
|
type Logger interface {
|
||
|
SetPrefix(string)
|
||
|
Printf(format string, v ...interface{})
|
||
|
Println(v ...interface{})
|
||
|
}
|