Skip to content

Instantly share code, notes, and snippets.

@fsouza
Created July 30, 2013 23:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fsouza/6117859 to your computer and use it in GitHub Desktop.
Save fsouza/6117859 to your computer and use it in GitHub Desktop.
package search
type Index struct {
files []string
}
func NewIndex(files ...string) (*Index, error) {
return nil, nil
}
func (i *Index) Search(term string) ([]string, error) {
return nil, nil
}
@fsouza
Copy link
Author

fsouza commented Jul 30, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment