all repos — litestore @ dfaa905915573ecfa609bb0aec9f783e46df7c85

A minimalist nosql document store.

No longer returning the '.ls' extension as part of the datastore name.
h3rald h3rald@h3rald.com
Sat, 03 Jan 2015 15:42:56 +0100
commit

dfaa905915573ecfa609bb0aec9f783e46df7c85

parent

8343cb9f2cca65d62c395e5a2765e392f3ed2875

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M litestore.nimlitestore.nim

@@ -86,7 +86,7 @@

proc retrieveDatastores*(): seq[string] = result = newSeq[string](0) for f in walkFiles(cwd.joinPath("*.ls")): - result.add f.extractFilename + result.add f.extractFilename.changeFileExt("") # TODO Implement proc createDocument*(store: Datastore, value: string, content = "", mimetype = "text/plain") =