Files
softplayer-proto/proto/test/v1/test_v1.proto
Nikolai Rodionov c63c766895
Some checks failed
ci/woodpecker/push/repo-checks Pipeline failed
ci/woodpecker/push/lint Pipeline was successful
Only the test service
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
2026-04-20 19:31:35 +02:00

15 lines
297 B
Protocol Buffer

syntax = "proto3";
package test.v1;
option go_package = "gitea.badhouseplants.net/softplayer/softplayer-go-proto/pkg/test/v1";
/**
* Service for handling environments
*/
service TestService {
rpc Ping (PingRequest) returns (PingResponse) {}
}
message PingRequest {}
message PingResponse {}