UI-Loading Messages with more (Optional) Data
This commit is contained in:
parent
0d07ddf851
commit
a5ade7dd03
6 changed files with 114 additions and 38 deletions
|
|
@ -45,6 +45,9 @@ async fn main() {
|
|||
// return;
|
||||
//}
|
||||
|
||||
// UI
|
||||
gui::ratatui_interface::launch(false);
|
||||
|
||||
// LANGUAGE PACK
|
||||
language_creator::create_languages();
|
||||
|
||||
|
|
@ -62,7 +65,10 @@ async fn main() {
|
|||
for up in UserManager::get_users() {
|
||||
sb = sb + "," + &up.user_id.to_string().as_str();
|
||||
}
|
||||
sb.remove(0);
|
||||
|
||||
if !sb.is_empty() {
|
||||
sb.remove(0);
|
||||
}
|
||||
println!(
|
||||
"IOTA ID: {}-####-####-####-############",
|
||||
CONFIG
|
||||
|
|
|
|||
Loading…
Reference in a new issue