Skip to content
This repository was archived by the owner on Jun 9, 2022. It is now read-only.

Commit 59373dd

Browse files
authored
change design
1 parent 9ecac79 commit 59373dd

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

source/LiteAdminPanel.cpp

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@ using namespace std;
66
string output;
77

88
void help() {
9-
cout << "[info] " << "list of commands:\n";
9+
cout << "| " << "list of commands:\n";
1010
cout << "| " << "help(?) - show this text\n";
1111
cout << "| " << "exit - exit program\n";
12-
cout << "| " << "info - show info about LA\n\n";
12+
cout << "| " << "info - show info about LA\n";
1313
}
1414

1515
void info() {
1616
cout << "| LiteAdminPanel version: 0.0.1\n";
1717
cout << "| github: https://github.com/orgs/LiteAdminPanel/\n";
18-
cout << "| discord: prorok#1433,VinkyV#7660\n";
19-
cout << "| LiteAdminPanel by VinkW & prorok & c++\n\n";
18+
cout << "| discord: prorok#1433, VinkyV#7660\n";
19+
cout << "| LiteAdminPanel by VinkW, prorok & c++\n\n";
2020
}
2121

2222
void error(int code) {
2323
if (code == 0) {
24-
cout << "[warn] " << "unknown command, type 'help' for help\n\n";
24+
cout << "[warn] " << "unknown command, type 'help' for help\n";
2525
}
2626
else {
27-
cout << "[warn] " << "something was wrong and we can't find problem pls say us about this\n\n";
27+
cout << "[warn] " << "something was wrong and we can't find problem pls say us about this\n";
2828
}
2929
}
3030

@@ -36,7 +36,7 @@ int main()
3636
cout << "|___|/ \\ " << endl;
3737
cout << " " << endl;
3838
cout << "[info] " << "LiteAdminPanel start type 'help' to get list of commands\n";
39-
cout << "[info] " << "If you have any issues pls say us about it(our contact in /info)\n\n";
39+
cout << "[info] " << "If you have any issues pls say us about it(our contacts in /info)\n\n";
4040

4141
while (output != "exit") {
4242
cout << "> ";
@@ -59,4 +59,3 @@ int main()
5959
}
6060
};
6161
/*Thx for spend your time and see this code, we do all to you enjoy it!*/
62-

0 commit comments

Comments
 (0)