Module Run.AutorunResult
The result of an autorun
type ok('a)
=
;|
Run('a)
The arguments are valid and the command can be executed
|
Handled
The arguments are valid and the action has already been handled
type err
=
type t('a)
= Stdlib.result(ok('a), err)
;