go-pattern-examples/behavior/10_state/state.go

6 lines
66 B
Go
Raw Normal View History

2020-04-21 17:50:21 +03:00
package state
2020-05-05 17:43:54 +03:00
//IRobot 代表机器人
type IRobot interface {
2020-04-21 17:50:21 +03:00
}