2022-04-13 20:45:14 +03:00

13 lines
151 B
Go

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