7 lines
132 B
Go
7 lines
132 B
Go
package gorequest
|
|
|
|
type Logger interface {
|
|
SetPrefix(string)
|
|
Printf(format string, v ...interface{})
|
|
Println(v ...interface{})
|
|
}
|