Files
softplayer-proto/proto/test/v1/test_v1.proto
Nikolai Rodionov 0401be278d
Some checks failed
ci/woodpecker/push/dart-generate Pipeline was successful
ci/woodpecker/push/go-generate Pipeline was successful
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/js-generate Pipeline was successful
ci/woodpecker/push/repo-checks Pipeline failed
Some basic proto setup (#4)
Co-authored-by: Nikolai Rodionov <nrodionov@eos-uptrade.de>
Reviewed-on: #4
Co-authored-by: Nikolai Rodionov <allanger@badhouseplants.net>
Co-committed-by: Nikolai Rodionov <allanger@badhouseplants.net>
2026-04-30 15:23:56 +00:00

23 lines
432 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 TestNoAuthService {
rpc Ping (PingRequest) returns (PingResponse) {}
}
service TestAuthService {
rpc Pong (PongRequest) returns (PongResponse) {}
}
message PingRequest {}
message PingResponse {}
message PongRequest {}
message PongResponse {}