all repos — litestore @ f44516e2fa28bed3a91f546a2491598ab253f1af

A minimalist nosql document store.

Renamed -c (custom) into -w (middleware)
h3rald h3rald@h3rald.com
Sun, 16 Feb 2020 11:18:39 +0100
commit

f44516e2fa28bed3a91f546a2491598ab253f1af

parent

fd65a969088717d1af9011d573fdd6fadea4aa4e

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

jump to
M src/litestorepkg/lib/cli.nimsrc/litestorepkg/lib/cli.nim

@@ -48,7 +48,7 @@ Options:

-a, --address Specify server address (default: 127.0.0.1). --auth Specify an authentication/authorization configuration file. -b, --body Specify a string containing input data for an operation to be executed. - -c, --custom Specify a path to a folder containing custom resource definitions. + -w, --middleware Specify a path to a folder containing middleware definitions. -d, --directory Specify a directory to serve, import, export, delete, or mount. -f, --file Specify a file containing input data for an operation to be executed. -h, --help Display this message.

@@ -62,6 +62,7 @@ --system Set the system flag for import, export, and delete operations

-t, --type Specify a content type for the body an operation to be executed via the execute command. -u, --uri Specify an uri to execute an operation through the execute command. -v, --version Display the program version. + -w, --middleware Specify a path to a folder containing middleware definitions. """ for kind, key, val in getOpt():

@@ -117,11 +118,11 @@ of "directory", "d":

if val == "": fail(104, "Directory not specified.") directory = val - of "custom", "c": + of "middleware", "w": if val == "": - fail(115, "Custom resources path not specified.") + fail(115, "Middleware path not specified.") if not val.existsDir(): - fail(116, "Custom resources directory does not exist.") + fail(116, "Middleware directory does not exist.") for file in val.walkDir(): if file.kind == pcFile or file.kind == pcLinkToFile: customResources[file.path.splitFile[1]] = file.path.readFile()