mirror of
https://github.com/Maks1mS/altlinux-autorepacked.git
synced 2024-12-26 15:58:09 +03:00
12 lines
279 B
Python
12 lines
279 B
Python
from autorepacked.common_providers.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)
|