Resource
store
A Config Store.
resource store;F get
get: func(key: string, max-len: u64) -> result<option<string>, error>;Fetches a value from the config store, returning ok(none) if it doesn't exist.
F open
open: func(name: string) -> result<store, open-error>;Attempts to open the named config store.
Names are case sensitive.