forked from mooncake-track/Mooncake
16 lines
379 B
C
16 lines
379 B
C
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace mooncake {
|
|
|
|
// Version information for the Mooncake system
|
|
constexpr const char* MOONCAKE_STORE_VERSION = "@MOONCAKE_STORE_VERSION@";
|
|
|
|
// Function to get the version string
|
|
inline const std::string& GetMooncakeStoreVersion() {
|
|
static const std::string version(MOONCAKE_STORE_VERSION);
|
|
return version;
|
|
}
|
|
|
|
} // namespace mooncake
|