Created
July 30, 2013 23:06
-
-
Save fsouza/6117859 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Main: https://github.com/fsouza/article-search/blob/master/main.go