awesome-patterns/creational/abstract_factory/vehicle.go

7 lines
74 B
Go
Raw Normal View History

2018-01-14 08:43:41 +03:00
package main
type Vehicle interface {
NumWheels() int
NumSeats() int
}