6 lines
91 B
Go

package fsmcontract
type State interface {
Handle(ctx Context) (State, Context, error)
}