Files
secondo/Algebras/DBService2/DatabaseEnvironment.hpp

13 lines
244 B
C++
Raw Normal View History

2026-01-23 17:03:45 +08:00
#ifndef DATABASE_ENVIRONMENT_H
#define DATABASE_ENVIRONMENT_H
#include <string>
namespace DBService {
struct DatabaseEnvironment {
static std::string production;
static std::string staging;
static std::string test;
};
}
#endif