This repository has been archived on 2021-09-07. You can view files and clone it, but cannot push or open issues or pull requests.
2019-03-09 23:38:10 +03:00

10 lines
217 B
Go

package abstract_factory
/**
* Is abstract factory for Vehicle family groups
* Each new family group factory should implement
* this interface
*/
type VehicleFactory interface {
NewVehicle(int) (Vehiche, error)
}