Maint: cli package interface rework

- return concrete struct type
- split interface is sub-interfaces
This commit is contained in:
Quentin McGaw (desktop)
2021-07-23 18:52:38 +00:00
parent 0b985e8c35
commit d9ca0deb08
6 changed files with 30 additions and 19 deletions

View File

@@ -2,6 +2,6 @@ package cli
import "context"
func (c *cli) CI(context context.Context) error {
func (c *CLI) CI(context context.Context) error {
return nil
}