add keyword file to keep keys for internal usage

This commit is contained in:
Xiang Li 2013-07-13 19:44:45 -07:00
parent 002eb1558a
commit ac945c77de
2 changed files with 13 additions and 0 deletions

View File

@ -16,4 +16,10 @@ type TestFail string
func (e TestFail) Error() string {
return string(e)
}
type Keyword string
func (e Keyword) Error() string {
return string(e)
}

7
store/keywords.go Normal file
View File

@ -0,0 +1,7 @@
package store
// keywords for internal useage
var keywords = map[string]bool{
"/acoounts": true,
"/ephemeralNodes": true,
}