mirror of
https://gitlab.com/niansa/asbots.git
synced 2025-03-06 20:48:25 +01:00
19 lines
343 B
C++
19 lines
343 B
C++
#include "config.hpp"
|
|
|
|
|
|
|
|
Config config = {
|
|
.connection = {
|
|
.addr = "127.0.0.1",
|
|
.port = 6667,
|
|
},
|
|
.auth = {
|
|
.send_password = "849372523412",
|
|
.accept_password = "843574835765"
|
|
},
|
|
.server = {
|
|
.name = "services.",
|
|
.description = "A test service!!",
|
|
.uid = "23X"
|
|
}
|
|
};
|