mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-02 18:23:24 +01:00
14 lines
214 B
Python
Executable File
14 lines
214 B
Python
Executable File
from pathlib import Path
|
|
import sys
|
|
|
|
sys.path.append(str(Path(__file__).parent.parent))
|
|
|
|
from AbstractBuildServer import AbstractBuildServer
|
|
|
|
|
|
class BuildServer(AbstractBuildServer):
|
|
pass
|
|
|
|
|
|
BuildServer().run()
|