13 lines
151 B
Go
Raw Normal View History

package delivery
type Delivery interface {
GetTcpNetwork() string
}
type Http struct {
}
func (http Http) GetTcpNetwork() string {
return "tcp"
}