mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
9 lines
263 B
Python
9 lines
263 B
Python
|
|
import os.path
|
|
|
|
|
|
DATA_DIR = os.path.dirname(__file__)
|
|
|
|
UPSTREAM = 'https://github.com/Microsoft/vscode-debugadapter-node/raw/master/debugProtocol.json' # noqa
|
|
VENDORED = os.path.join(DATA_DIR, 'debugProtocol.json')
|
|
METADATA = os.path.join(DATA_DIR, 'UPSTREAM')
|