mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-08-03 01:32:21 +00:00
* Get rid of all transport types and settle on Protobuf hope i don't regret this * Update Cargo.toml * Update agent.py
23 lines
414 B
Protocol Buffer
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;
|
|
}
|