6 lines
147 B
Go
6 lines
147 B
Go
package types
|
|
|
|
type Handler func(ctx Context, tx Tx) Result
|
|
|
|
type AnteHandler func(ctx Context, tx Tx) (newCtx Context, result Result, abort bool)
|