Documentation ¶ Index ¶ type Result type Searcher Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Result ¶ type Result interface { // GetFile returns the file GetFile() string // GetRow returns the row GetRow() int // GetColumn returns the column GetColumn() string // String returns the string value of the result String() string } type Searcher ¶ type Searcher interface { Search(path, keyword string) ([]Result, error) } Source Files ¶ View all Source files searcher.go Click to show internal directories. Click to hide internal directories.