summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runner/stub.go63
1 files changed, 63 insertions, 0 deletions
diff --git a/runner/stub.go b/runner/stub.go
index e1fd8ed..3282fe8 100644
--- a/runner/stub.go
+++ b/runner/stub.go
@@ -54,3 +54,66 @@ func (s Stub) Invocation(src *model.Source) []string {
//TODO implement me
panic("implement me")
}
+
+type HydratedStub struct {
+}
+
+func (h HydratedStub) Matches(input string) bool {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (h HydratedStub) Create(s *model.Source) *exec.Cmd {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (h HydratedStub) Sub() []string {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (h HydratedStub) Label() string {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (h HydratedStub) Hydrate(src *model.Source) (model.HydratedTarget, error) {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (h HydratedStub) Tags() model.Tags {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (h HydratedStub) ShortestId() string {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (h HydratedStub) Visible() bool {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (h HydratedStub) Invocation(src *model.Source) []string {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (h HydratedStub) Icon() string {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (h HydratedStub) Description() string {
+ //TODO implement me
+ panic("implement me")
+}
+
+func (h HydratedStub) Target() model.Target {
+ //TODO implement me
+ panic("implement me")
+}