6 lines
91 B
Go
6 lines
91 B
Go
package fsmcontract
|
|
|
|
type State interface {
|
|
Handle(ctx Context) (State, Context, error)
|
|
}
|