From 6c4bfcc7d224a0e958c1967f6f6815a13a7c9173 Mon Sep 17 00:00:00 2001 From: Artemy Date: Mon, 11 Sep 2023 11:44:24 +0300 Subject: [PATCH] add artegoser instance --- README.md | 9 +++++---- index.js | 10 ++++++---- instances.json | 5 +++++ 3 files changed, 16 insertions(+), 8 deletions(-) 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 } ]