mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-19 13:28:25 +00:00
[World CLI] Refactor world CLI to be easier to reason about (#2441)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#include "../../common/repositories/zone_repository.h"
|
||||
|
||||
void WorldserverCLI::TestRepository2(int argc, char **argv, argh::parser &cmd, std::string &description)
|
||||
{
|
||||
description = "Test command";
|
||||
|
||||
if (cmd[{"-h", "--help"}]) {
|
||||
return;
|
||||
}
|
||||
|
||||
auto zones = ZoneRepository::GetWhere(content_db, "short_name = 'anguish'");
|
||||
|
||||
for (auto &zone: zones) {
|
||||
LogInfo(
|
||||
"Zone [{}] long_name [{}] id [{}]",
|
||||
zone.short_name,
|
||||
zone.long_name,
|
||||
zone.id
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user