5 lines
102 B
Go
5 lines
102 B
Go
package transport
|
|
|
|
type Caller interface {
|
|
Call(host string, path string, data any, out any) error
|
|
}
|