Action is an action that a searcher would like to perform.
| 10 | |
| 11 | // Action is an action that a searcher would like to perform. |
| 12 | type Action interface { |
| 13 | searcherAction() |
| 14 | } |
| 15 | |
| 16 | // Create is a directive from the searcher to create a new run. |
| 17 | type Create struct { |