v0.0.1
Разработка: - БД скрипт с начальными данными - вывод списка номеров телефонов по группам
This commit is contained in:
parent
ca5259c638
commit
815b5a6b6a
34 changed files with 1229 additions and 49 deletions
33
source/structures.d
Normal file
33
source/structures.d
Normal file
|
@ -0,0 +1,33 @@
|
|||
module structures;
|
||||
|
||||
struct ServerInfo {
|
||||
string name;
|
||||
}
|
||||
|
||||
struct WebHost {
|
||||
string[] addresses;
|
||||
ushort http = 0;
|
||||
ushort https = 0;
|
||||
string cert;
|
||||
string key;
|
||||
string data;
|
||||
string title;
|
||||
int loglevel = -1;
|
||||
int logoutput = 0;
|
||||
string logfile;
|
||||
}
|
||||
|
||||
struct GroupDB {
|
||||
string name;
|
||||
string comment;
|
||||
}
|
||||
|
||||
struct NumberDB {
|
||||
string number;
|
||||
string group;
|
||||
string list;
|
||||
int all_cc;
|
||||
int white_cc;
|
||||
int black_cc;
|
||||
string comment;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue