diff options
| author | Stefan Boberg <[email protected]> | 2025-10-13 16:52:19 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-10-13 16:52:19 +0200 |
| commit | 61a0439e0257766b5b4bed163db2acce7dadde64 (patch) | |
| tree | 518a235e070a5d70458e3704a2c296da7bad826f /src/zenserver/main.cpp | |
| parent | extract storage server into separate source files (#569) (diff) | |
| download | zen-61a0439e0257766b5b4bed163db2acce7dadde64.tar.xz zen-61a0439e0257766b5b4bed163db2acce7dadde64.zip | |
split storage config from base config (#570)
this change splits the configuration logic into a base part and a storage server part
manually tested with shared server config file
Diffstat (limited to 'src/zenserver/main.cpp')
| -rw-r--r-- | src/zenserver/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenserver/main.cpp b/src/zenserver/main.cpp index f1c1a9394..97847b65d 100644 --- a/src/zenserver/main.cpp +++ b/src/zenserver/main.cpp @@ -24,8 +24,8 @@ #include <zenutil/service.h> -#include "config.h" #include "diag/logging.h" +#include "storageconfig.h" #if ZEN_PLATFORM_WINDOWS # include <zencore/windows.h> |