diff --git a/proto/test/v1/test_v1.proto b/proto/test/v1/test_v1.proto index 149c8ed..ea26408 100644 --- a/proto/test/v1/test_v1.proto +++ b/proto/test/v1/test_v1.proto @@ -5,8 +5,11 @@ option go_package = "gitea.badhouseplants.net/softplayer/softplayer-go-proto/pkg /** * Service for handling environments */ -service TestService { +service TestNoAuthService { rpc Ping (PingRequest) returns (PingResponse) {} +} + +service TestAuthService { rpc Pong (PongRequest) returns (PongResponse) {} }