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