2025-07-29 11:01:54 +08:00
|
|
|
#include<Config.hpp>
|
|
|
|
#include<GlobalConfig.hpp>
|
2025-06-12 14:59:06 +08:00
|
|
|
|
2025-06-12 21:46:53 +08:00
|
|
|
using namespace std;
|
2025-07-29 11:01:54 +08:00
|
|
|
using namespace Convention;
|
2025-06-12 21:46:53 +08:00
|
|
|
|
2025-06-12 14:59:06 +08:00
|
|
|
int main()
|
|
|
|
{
|
2025-07-29 11:01:54 +08:00
|
|
|
cout << ProjectConfig().LoadProperties().FindItem<std::string>("test", "test") << endl;
|
2025-06-12 21:46:53 +08:00
|
|
|
}
|