mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 12:37:08 +11:00
🐎 enabled multi-threading for debugging
This commit is contained in:
parent
c32e70c3a5
commit
3cf58d68a2
1 changed files with 1 additions and 1 deletions
2
main.cpp
2
main.cpp
|
|
@ -40,7 +40,7 @@ int main(int argc, char **argv)
|
|||
}
|
||||
|
||||
auto API = std::make_shared<BankF>();
|
||||
app().addListener("0.0.0.0", 80).registerController(API).run();
|
||||
app().addListener("0.0.0.0", 80).registerController(API).setThreadNum(std::stoul(argv[3])).run();
|
||||
|
||||
return 0;
|
||||
}
|
||||
Loading…
Reference in a new issue