summaryrefslogtreecommitdiff
path: root/go/internal/command/discover/discover.go
blob: 63a7a32c0f78e9d859e76b8f5bbeaeceb3481930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package discover

import (
	"fmt"

	"gitlab.com/gitlab-org/gitlab-shell/go/internal/command/commandargs"
	"gitlab.com/gitlab-org/gitlab-shell/go/internal/config"
)

type Command struct {
	Config *config.Config
	Args   *commandargs.CommandArgs
}

func (c *Command) Execute() error {
	return fmt.Errorf("No feature is implemented yet")
}