django-language-server/proto/v1/check.proto
Josh Thomas 0a6e975ca5
Get rid of all transport types and settle on Protobuf (#25)
* Get rid of all transport types and settle on Protobuf

hope i don't regret this

* Update Cargo.toml

* Update agent.py
2024-12-12 16:53:49 -06:00

23 lines
414 B
Protocol Buffer

syntax = "proto3";
package djls.v1.check;
message HealthRequest {}
message HealthResponse {
bool passed = 1;
optional string error = 2;
}
message DjangoAvailableRequest {}
message DjangoAvailableResponse {
bool passed = 1;
optional string error = 2;
}
message AppInstalledRequest {
string app_name = 1;
}
message AppInstalledResponse {
bool passed = 1;
optional string error = 2;
}