aboutsummaryrefslogtreecommitdiff
path: root/src/zen/zen.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2023-09-20 15:22:03 +0200
committerGitHub <[email protected]>2023-09-20 15:22:03 +0200
commit14d7568f9c7d970b7bbf7b6463a0a8530f98bb6f (patch)
treebf24ac15759385cea339f7e1cf5380f984f5699a /src/zen/zen.cpp
parentchangelog version bump (diff)
downloadarchived-zen-14d7568f9c7d970b7bbf7b6463a0a8530f98bb6f.tar.xz
archived-zen-14d7568f9c7d970b7bbf7b6463a0a8530f98bb6f.zip
VFS implementation for local storage service (#396)
currently, only Windows (using Projected File System) is supported
Diffstat (limited to 'src/zen/zen.cpp')
-rw-r--r--src/zen/zen.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/zen/zen.cpp b/src/zen/zen.cpp
index 5530b57b6..db67fbae0 100644
--- a/src/zen/zen.cpp
+++ b/src/zen/zen.cpp
@@ -20,6 +20,7 @@
#include "cmds/top.h"
#include "cmds/up.h"
#include "cmds/version.h"
+#include "cmds/vfs_cmd.h"
#include <zencore/filesystem.h>
#include <zencore/logging.h>
@@ -230,6 +231,7 @@ main(int argc, char** argv)
UpCommand UpCmd;
AttachCommand AttachCmd;
VersionCommand VersionCmd;
+ VfsCommand VfsCmd;
#if ZEN_WITH_TESTS
RunTestsCommand RunTestsCmd;
#endif
@@ -279,6 +281,7 @@ main(int argc, char** argv)
{"up", &UpCmd, "Bring zen server up"},
{"attach", &AttachCmd, "Add a sponsor process to a running zen service"},
{"version", &VersionCmd, "Get zen server version"},
+ {"vfs", &VfsCmd, "Manage virtual file system"},
#if ZEN_WITH_TESTS
{"runtests", &RunTestsCmd, "Run zen tests"},
#endif