mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-07-22 20:05:02 +00:00
9 lines
196 B
Python
9 lines
196 B
Python
from __future__ import annotations
|
|
|
|
import json
|
|
import sys
|
|
|
|
from django.conf import settings
|
|
|
|
if __name__ == "__main__":
|
|
print(json.dumps({"has_app": sys.argv[1] in settings.INSTALLED_APPS}))
|