This repository has been archived on 2021-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
backend/src/config.hpp

20 lines
517 B
C++

#ifndef FEDIBLOCK_BACKEND_CONFIG_HPP
#define FEDIBLOCK_BACKEND_CONFIG_HPP
#include <string_view>
namespace FediBlock::config
{
using std::string_view;
inline constexpr string_view forge_domain{"schlomp.space"};
inline constexpr string_view forge_org{"FediBlock"};
inline constexpr string_view forge_repo_backend{"backend"};
inline constexpr string_view forge_repo_data{"data"};
inline constexpr string_view forge_repo_data_branch{"main"};
} // namespace FediBlock::config
#endif // FEDIBLOCK_BACKEND_CONFIG_HPP