No longer returning the '.ls' extension as part of the datastore name.
h3rald h3rald@h3rald.com
Sat, 03 Jan 2015 15:42:56 +0100
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
litestore.nim
→
litestore.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") =