2023-01-25 00:28:44 +00:00
|
|
|
const pveAPI = "";
|
2023-01-25 00:48:15 +00:00
|
|
|
const pveAPIToken = {
|
|
|
|
user: "",
|
|
|
|
realm: "",
|
|
|
|
id: "",
|
|
|
|
uuid: ""
|
|
|
|
};
|
2023-01-25 00:28:44 +00:00
|
|
|
const listenPort = 80;
|
2023-02-28 22:04:30 +00:00
|
|
|
const domain = "";
|
2023-01-25 00:28:44 +00:00
|
|
|
|
2023-02-28 22:04:30 +00:00
|
|
|
module.exports = {pveAPI, listenPort, pveAPIToken, domain};
|