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.

14 lines
204 B
Go
Raw Normal View History

2018-11-05 21:09:00 +08:00
package main
type FactoryInterface interface {
CreatePigMeatBuns() // 创建猪肉馅产品
Create3SBuns() // 创建三鲜馅产品
}
type ProductInterface interface {
Intro()
}
func main() {
}