6 lines
84 B
Go
Raw Permalink Normal View History

2018-01-14 15:43:41 +10:00
package main
type VehicleFactory interface {
NewVehicle(v int) (Vehicle, error)
}