This commit is contained in:
2024-01-16 17:32:13 +03:00
commit 250fe07bf0
9 changed files with 181 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from autorepacked.base_provider import BaseProvider
class CodeProvider(BaseProvider):
_name = 'code'
DOWNLOAD_URL = "https://code.visualstudio.com/sha/download?build=stable&os=linux-rpm-x64"
def get_provider(config):
return CodeProvider(config)