8 lines
123 B
Go
8 lines
123 B
Go
package taskstate
|
|
|
|
type Transition struct {
|
|
State, ReasonCode, AccountID, TaskID string
|
|
}
|
|
|
|
type Notifier func(Transition)
|