mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-09-13 05:46:17 +00:00
remove import check for django in setup (#27)
unneeded now since the agent imports and sets up Django as part of it's initial serving
This commit is contained in:
parent
9bbc2c2c3a
commit
b13d19a4bf
10 changed files with 21 additions and 104 deletions
|
@ -9,8 +9,7 @@ import "v1/python.proto";
|
|||
message Request {
|
||||
oneof command {
|
||||
check.HealthRequest check__health = 1;
|
||||
check.DjangoAvailableRequest check__django_available = 2;
|
||||
check.AppInstalledRequest check__app_installed = 3;
|
||||
check.AppInstalledRequest check__app_installed = 2;
|
||||
python.GetEnvironmentRequest python__get_environment = 1000;
|
||||
django.GetProjectInfoRequest django__get_project_info = 2000;
|
||||
}
|
||||
|
@ -19,8 +18,7 @@ message Request {
|
|||
message Response {
|
||||
oneof result {
|
||||
check.HealthResponse check__health = 1;
|
||||
check.DjangoAvailableResponse check__django_available = 2;
|
||||
check.AppInstalledResponse check__app_installed = 3;
|
||||
check.AppInstalledResponse check__app_installed = 2;
|
||||
python.GetEnvironmentResponse python__get_environment = 1000;
|
||||
django.GetProjectInfoResponse django__get_project_info = 2000;
|
||||
Error error = 9000;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue