-
Notifications
You must be signed in to change notification settings - Fork 856
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #274 from TBXark/dev
perf: adapter适配新cloudflare-worker-adapter
- Loading branch information
Showing
70 changed files
with
5,264 additions
and
3,863 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dist/** linguist-generated=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import {build} from '../script/esbuild.config.js'; | ||
import { build } from '../script/esbuild.config.js'; | ||
|
||
build('../../dist/buildinfo.json', 'build/index.js').catch(() => process.exit(1)); | ||
build('../../dist/buildinfo.json', 'build/index.js') | ||
.then(() => console.log('Build success')) | ||
.catch(() => process.exit(1)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
import {default as adapter} from 'cloudflare-worker-adapter'; | ||
import {default as worker} from '../../main.js'; | ||
import fs from 'fs'; | ||
import {createCache} from 'cloudflare-worker-adapter/cache'; | ||
|
||
import fs from 'node:fs'; | ||
import { createCache, startServer } from 'cloudflare-worker-adapter'; | ||
import worker from '../../main.js'; | ||
|
||
const { | ||
CONFIG_PATH = './config/config.json', | ||
TOML_PATH = './config/config.toml', | ||
CONFIG_PATH = '/app/config.json', | ||
TOML_PATH = '/app/config.toml', | ||
} = process.env; | ||
|
||
const config = JSON.parse(fs.readFileSync(CONFIG_PATH, 'utf-8')); | ||
const cache = await createCache(config?.database?.type, config?.database); | ||
console.log(`database: ${config?.database?.type} is ready`); | ||
|
||
adapter.startServer( | ||
startServer( | ||
8787, | ||
'127.0.0.1', | ||
TOML_PATH, | ||
{ DATABASE: cache }, | ||
{ server: config.server }, | ||
{ baseURL: config.server }, | ||
worker.fetch, | ||
); | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
{ | ||
"name": "chatgpt-telegram-bot", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"type": "module", | ||
"scripts": { | ||
"start": "node index.js", | ||
"build": "node esbuild.config.js", | ||
"docker": "npm run build && docker build -t chatgpt-telegram-bot:latest .", | ||
"lint": "eslint --fix index.js" | ||
}, | ||
"author": "TBXark", | ||
"license": "MIT", | ||
"dependencies": { | ||
"cloudflare-worker-adapter": "1.0.3" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.8.0" | ||
} | ||
"name": "chatgpt-telegram-bot", | ||
"type": "module", | ||
"version": "1.0.0", | ||
"description": "", | ||
"author": "TBXark", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"scripts": { | ||
"start": "node index.js", | ||
"build": "node esbuild.config.js", | ||
"docker": "npm run build && docker build -t chatgpt-telegram-bot:latest ." | ||
}, | ||
"dependencies": { | ||
"cloudflare-worker-adapter": "1.2.2" | ||
}, | ||
"devDependencies": { | ||
"esbuild": "^0.23.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,125 @@ | |
# yarn lockfile v1 | ||
|
||
|
||
"@eslint/js@^9.8.0": | ||
version "9.9.0" | ||
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.9.0.tgz#d8437adda50b3ed4401964517b64b4f59b0e2638" | ||
integrity sha512-hhetes6ZHP3BlXLxmd8K2SNgkhNSi+UcecbnwWKwpP7kyi/uC75DJ1lOOBO3xrC4jyojtGE3YxKZPHfk4yrgug== | ||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz#51299374de171dbd80bb7d838e1cfce9af36f353" | ||
integrity sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz#58565291a1fe548638adb9c584237449e5e14018" | ||
integrity sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.23.1.tgz#5eb8c652d4c82a2421e3395b808e6d9c42c862ee" | ||
integrity sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.23.1.tgz#ae19d665d2f06f0f48a6ac9a224b3f672e65d517" | ||
integrity sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz#05b17f91a87e557b468a9c75e9d85ab10c121b16" | ||
integrity sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz#c58353b982f4e04f0d022284b8ba2733f5ff0931" | ||
integrity sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz#f9220dc65f80f03635e1ef96cfad5da1f446f3bc" | ||
integrity sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz#69bd8511fa013b59f0226d1609ac43f7ce489730" | ||
integrity sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz#8050af6d51ddb388c75653ef9871f5ccd8f12383" | ||
integrity sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz#ecaabd1c23b701070484990db9a82f382f99e771" | ||
integrity sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz#3ed2273214178109741c09bd0687098a0243b333" | ||
integrity sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz#a0fdf440b5485c81b0fbb316b08933d217f5d3ac" | ||
integrity sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz#e11a2806346db8375b18f5e104c5a9d4e81807f6" | ||
integrity sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz#06a2744c5eaf562b1a90937855b4d6cf7c75ec96" | ||
integrity sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz#65b46a2892fc0d1af4ba342af3fe0fa4a8fe08e7" | ||
integrity sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz#e71ea18c70c3f604e241d16e4e5ab193a9785d6f" | ||
integrity sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz#d47f97391e80690d4dfe811a2e7d6927ad9eed24" | ||
integrity sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz#44e743c9778d57a8ace4b72f3c6b839a3b74a653" | ||
integrity sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz#05c5a1faf67b9881834758c69f3e51b7dee015d7" | ||
integrity sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz#2e58ae511bacf67d19f9f2dcd9e8c5a93f00c273" | ||
integrity sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz#adb022b959d18d3389ac70769cef5a03d3abd403" | ||
integrity sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz#84906f50c212b72ec360f48461d43202f4c8b9a2" | ||
integrity sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz#5e3eacc515820ff729e90d0cb463183128e82fac" | ||
integrity sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ== | ||
|
||
"@esbuild/[email protected]": | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz#81fd50d11e2c32b2d6241470e3185b70c7b30699" | ||
integrity sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg== | ||
|
||
"@gar/promisify@^1.0.1": | ||
version "1.1.3" | ||
|
@@ -50,6 +165,13 @@ agent-base@6, agent-base@^6.0.2: | |
dependencies: | ||
debug "4" | ||
|
||
agent-base@^7.0.2: | ||
version "7.1.1" | ||
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" | ||
integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== | ||
dependencies: | ||
debug "^4.3.4" | ||
|
||
agentkeepalive@^4.1.3: | ||
version "4.5.0" | ||
resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.5.0.tgz#2673ad1389b3c418c5a20c5d7364f93ca04be923" | ||
|
@@ -164,14 +286,15 @@ clean-stack@^2.0.0: | |
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" | ||
integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== | ||
|
||
cloudflare-worker-adapter@1.0.3: | ||
version "1.0.3" | ||
resolved "https://registry.yarnpkg.com/cloudflare-worker-adapter/-/cloudflare-worker-adapter-1.0.3.tgz#c87dda4b9f036c1b6887e36b52dbc4da8de198a0" | ||
integrity sha512-Eyd2JsmGvzSt46fG2spccARgIhlcTXcpPVGIwxpG9ocC229LVYtw+JZ1R6FbMUVplFjrPqNJ2zK+tqX2pkBoKw== | ||
cloudflare-worker-adapter@1.2.2: | ||
version "1.2.2" | ||
resolved "https://registry.yarnpkg.com/cloudflare-worker-adapter/-/cloudflare-worker-adapter-1.2.2.tgz#b0139424bee23fd4ceae50e65388da7c4e913401" | ||
integrity sha512-FuqyGK18DTgf0P5/H7lzDwUh2CTxyqItdI0ZZBnvHjYceF1r8nPkV0uN8OG9+18fSdl5Y0s9Ybf4UM/AYH8eng== | ||
dependencies: | ||
https-proxy-agent "^7.0.5" | ||
ioredis "^5.4.1" | ||
node-fetch "^3.3.2" | ||
sqlite3 "^5.1.7" | ||
sqlite3 "^5" | ||
toml "^3.0.0" | ||
|
||
cluster-key-slot@^1.1.0: | ||
|
@@ -262,6 +385,36 @@ err-code@^2.0.2: | |
resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" | ||
integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== | ||
|
||
esbuild@^0.23.1: | ||
version "0.23.1" | ||
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.23.1.tgz#40fdc3f9265ec0beae6f59824ade1bd3d3d2dab8" | ||
integrity sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg== | ||
optionalDependencies: | ||
"@esbuild/aix-ppc64" "0.23.1" | ||
"@esbuild/android-arm" "0.23.1" | ||
"@esbuild/android-arm64" "0.23.1" | ||
"@esbuild/android-x64" "0.23.1" | ||
"@esbuild/darwin-arm64" "0.23.1" | ||
"@esbuild/darwin-x64" "0.23.1" | ||
"@esbuild/freebsd-arm64" "0.23.1" | ||
"@esbuild/freebsd-x64" "0.23.1" | ||
"@esbuild/linux-arm" "0.23.1" | ||
"@esbuild/linux-arm64" "0.23.1" | ||
"@esbuild/linux-ia32" "0.23.1" | ||
"@esbuild/linux-loong64" "0.23.1" | ||
"@esbuild/linux-mips64el" "0.23.1" | ||
"@esbuild/linux-ppc64" "0.23.1" | ||
"@esbuild/linux-riscv64" "0.23.1" | ||
"@esbuild/linux-s390x" "0.23.1" | ||
"@esbuild/linux-x64" "0.23.1" | ||
"@esbuild/netbsd-x64" "0.23.1" | ||
"@esbuild/openbsd-arm64" "0.23.1" | ||
"@esbuild/openbsd-x64" "0.23.1" | ||
"@esbuild/sunos-x64" "0.23.1" | ||
"@esbuild/win32-arm64" "0.23.1" | ||
"@esbuild/win32-ia32" "0.23.1" | ||
"@esbuild/win32-x64" "0.23.1" | ||
|
||
expand-template@^2.0.3: | ||
version "2.0.3" | ||
resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" | ||
|
@@ -367,6 +520,14 @@ https-proxy-agent@^5.0.0: | |
agent-base "6" | ||
debug "4" | ||
|
||
https-proxy-agent@^7.0.5: | ||
version "7.0.5" | ||
resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" | ||
integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== | ||
dependencies: | ||
agent-base "^7.0.2" | ||
debug "4" | ||
|
||
humanize-ms@^1.2.1: | ||
version "1.2.1" | ||
resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" | ||
|
@@ -833,7 +994,7 @@ sprintf-js@^1.1.3: | |
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" | ||
integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== | ||
|
||
sqlite3@^5.1.7: | ||
sqlite3@^5: | ||
version "5.1.7" | ||
resolved "https://registry.yarnpkg.com/sqlite3/-/sqlite3-5.1.7.tgz#59ca1053c1ab38647396586edad019b1551041b7" | ||
integrity sha512-GGIyOiFaG+TUra3JIfkI/zGP8yZYLPQ0pl1bH+ODjiX57sPhrLU5sQJn1y9bDKZUFYkX1crlrPfSYt0BKKdkog== | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.