diff --git a/store/error.go b/store/error.go index 3f13f83a5..c350f64ba 100644 --- a/store/error.go +++ b/store/error.go @@ -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) } \ No newline at end of file diff --git a/store/keywords.go b/store/keywords.go new file mode 100644 index 000000000..7861fba5e --- /dev/null +++ b/store/keywords.go @@ -0,0 +1,7 @@ +package store + +// keywords for internal useage +var keywords = map[string]bool{ + "/acoounts": true, + "/ephemeralNodes": true, +} \ No newline at end of file