mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-03 16:25:35 +00:00
17 lines
225 B
C++
17 lines
225 B
C++
#pragma once
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
namespace Env {
|
|
|
|
enum class Key {
|
|
// provider settings
|
|
PROVIDER_UPDATE_MESSAGE,
|
|
};
|
|
|
|
std::optional<std::string> Get(Key key);
|
|
|
|
std::string_view ToString(Key key);
|
|
|
|
}
|