API is the simple interface we expect for any tools items.
| 36 | |
| 37 | // API is the simple interface we expect for any tools items. |
| 38 | type API interface { |
| 39 | // Main runs everything for this tools item. |
| 40 | Main(context.Context) error |
| 41 | } |
| 42 | |
| 43 | // Config is a struct of all the configuration values which are shared by all of |
| 44 | // the tools utilities. By including this as a separate struct, it can be used |