13 lines
151 B
Go
13 lines
151 B
Go
package delivery
|
|
|
|
type Delivery interface {
|
|
GetTcpNetwork() string
|
|
}
|
|
|
|
type Http struct {
|
|
}
|
|
|
|
func (http Http) GetTcpNetwork() string {
|
|
return "tcp"
|
|
}
|