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