File size: 426 Bytes
a044d81 475c9dd a044d81 08315b0 a044d81 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #pragma once
namespace PluginBridgeConstants {
static constexpr int kDefaultMcpPort = 16620;
static constexpr int kMaxPluginNameLength = 256;
static constexpr int kMaxParamResults = 50;
static constexpr const char* kHelperBinaryName = "PluginBridgeHelper";
static constexpr const char* kVersion = "0.5.3";
static constexpr const char* kRegistryPath = "/tmp/pluginbridge-registry.json";
} // namespace PluginBridgeConstants
|