django-language-server/proto/v1/check.proto
Josh Thomas b13d19a4bf
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
2024-12-12 20:03:48 -06:00

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