blob: 5be97ed853b5e0c1b2cb4074254cbabc15371d04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package model
import (
"os/exec"
)
type Target interface {
Matches
Create(s *Source) *exec.Cmd
Sub() []string
Label() string
Hydrate(src *Source) (HydratedTarget, error)
Tags() Tags
ShortestId() string
Visible() bool
}
type HydratedTarget interface {
Target
Icon() string
Description() string
Target() Target
}
|