django-language-server/proto/v1/commands.proto
Josh Thomas 8e941ba8a0
Some checks are pending
test / test (macos-latest) (push) Waiting to run
test / test (ubuntu-latest) (push) Waiting to run
test / test (windows-latest) (push) Waiting to run
reorganize proto files a bit (#30)
2024-12-14 00:06:06 -06:00

35 lines
610 B
Protocol Buffer

syntax = "proto3";
package djls.v1.commands;
import "v1/django.proto";
import "v1/python.proto";
message Check {
message HealthRequest {}
message HealthResponse {
bool passed = 1;
optional string error = 2;
}
message GeoDjangoPrereqsRequest {}
message GeoDjangoPrereqsResponse {
bool passed = 1;
optional string error = 2;
}
}
message Python {
message GetEnvironmentRequest {}
message GetEnvironmentResponse {
python.Python python = 1;
}
}
message Django {
message GetProjectInfoRequest {}
message GetProjectInfoResponse {
django.Project project = 1;
}
}