Using new permissions system consequently

This commit is contained in:
WolverinDEV
2020-01-26 14:21:34 +01:00
parent d42ec40a58
commit 23a9385afe
5 changed files with 182 additions and 35 deletions
+8
View File
@@ -157,6 +157,14 @@ int main() {
cmd_handler->invoke(cmd);
{
ts::command_builder builder{"hello_world"};
builder.put(0, "hello", "this is hello world");
builder.put(1, "hello", "this is hello world1");
builder.put(1, "hello", "this is hello world2");
builder.put_unchecked(6, "hello", 22);
std::cout << "Result: " << builder.build() << "\n";
}
//auto v = ts::descriptor::entry::bulked::val;
return 0;
}