diff --git a/README.md b/README.md index abfdb4c..3f4728e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ -# instances +# instances Instances of TXTDot proxies -| Name | Base URL | Secure | -| ------------------------ | --------------------- | ------ | -| Official TXTDot instance | | true | +| Name | Base URL | Secure | +| ---- | -------- | ------ | +| Official TXTDot instance | | true | +| Official TXTDot instance by artegoser | | true | diff --git a/index.js b/index.js index cb3a627..256cf83 100644 --- a/index.js +++ b/index.js @@ -10,9 +10,11 @@ Instances of TXTDot proxies | Name | Base URL | Secure | | ---- | -------- | ------ | -${instances.map( - (instance) => - `| ${instance.name} | <${instance.baseUrl}> | ${instance.secure} |` -)} +${instances + .map( + (instance) => + `| ${instance.name} | <${instance.baseUrl}> | ${instance.secure} |` + ) + .join("\n")} ` ); diff --git a/instances.json b/instances.json index 3be9e92..14466fe 100644 --- a/instances.json +++ b/instances.json @@ -3,5 +3,10 @@ "name": "Official TXTDot instance", "baseUrl": "https://txt.dc09.ru", "secure": true + }, + { + "name": "Official TXTDot instance by artegoser", + "baseUrl": "https://txt.artegoser.ru", + "secure": true } ]