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:
Josh Thomas 2024-12-12 20:03:48 -06:00 committed by GitHub
parent 9bbc2c2c3a
commit b13d19a4bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 21 additions and 104 deletions

View file

@ -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;