mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-09-07 19:00:35 +00:00
* Get rid of all transport types and settle on Protobuf hope i don't regret this * Update Cargo.toml * Update agent.py
15 lines
206 B
Protocol Buffer
15 lines
206 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package djls.v1.django;
|
|
|
|
// models
|
|
message Project {
|
|
string version = 3;
|
|
}
|
|
|
|
// commands
|
|
message GetProjectInfoRequest {}
|
|
|
|
message GetProjectInfoResponse {
|
|
Project project = 1;
|
|
}
|