mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-10-03 15:15:37 +00:00
unneeded now since the agent imports and sets up Django as part of it's initial serving
17 lines
291 B
Protocol Buffer
17 lines
291 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package djls.v1.check;
|
|
|
|
message HealthRequest {}
|
|
message HealthResponse {
|
|
bool passed = 1;
|
|
optional string error = 2;
|
|
}
|
|
|
|
message AppInstalledRequest {
|
|
string app_name = 1;
|
|
}
|
|
message AppInstalledResponse {
|
|
bool passed = 1;
|
|
optional string error = 2;
|
|
}
|