mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2024-11-22 20:56:02 +03:00
7 lines
74 B
Go
7 lines
74 B
Go
package main
|
|
|
|
type Vehicle interface {
|
|
NumWheels() int
|
|
NumSeats() int
|
|
}
|