make update message adjustable by provider

This commit is contained in:
Lion Kortlepel
2023-12-29 01:10:24 +01:00
committed by Lion
parent b0f5976121
commit c6aa7776fc
4 changed files with 45 additions and 2 deletions

16
include/Env.h Normal file
View File

@@ -0,0 +1,16 @@
#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);
}