forked from p93542168/wheat-cache
8 lines
145 B
Go
8 lines
145 B
Go
|
package transport
|
||
|
|
||
|
type TransPortInterface interface {
|
||
|
GetTargetAddr(...string) (string, error)
|
||
|
IsEmpty() bool
|
||
|
AddTarget(targets ...string)
|
||
|
}
|