#pragma once #include #include namespace Env { enum class Key { // provider settings PROVIDER_UPDATE_MESSAGE, }; std::optional Get(Key key); std::string_view ToString(Key key); }