mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2024-11-25 21:26:03 +03:00
6 lines
66 B
Go
6 lines
66 B
Go
package state
|
|
|
|
//IRobot 代表机器人
|
|
type IRobot interface {
|
|
}
|