12 lines
119 B
Go
12 lines
119 B
Go
package statemachine
|
|
|
|
type TestState struct {
|
|
A uint64
|
|
B uint64
|
|
}
|
|
|
|
type TestEvent struct {
|
|
A string
|
|
Val uint64
|
|
}
|