django-language-server/proto/v1/django.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

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