summaryrefslogtreecommitdiff
path: root/go/internal/command/discover
diff options
context:
space:
mode:
Diffstat (limited to 'go/internal/command/discover')
-rw-r--r--go/internal/command/discover/discover.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/go/internal/command/discover/discover.go b/go/internal/command/discover/discover.go
new file mode 100644
index 0000000..63a7a32
--- /dev/null
+++ b/go/internal/command/discover/discover.go
@@ -0,0 +1,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")
+}