From dbd64234397853a9ea2413fb29bd92b6fea3cec5 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Mon, 11 May 2026 11:46:08 +0200 Subject: [PATCH] Fix naming for the test service Signed-off-by: Nikolai Rodionov --- proto/test/v1/test_v1.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/test/v1/test_v1.proto b/proto/test/v1/test_v1.proto index ea26408..802a105 100644 --- a/proto/test/v1/test_v1.proto +++ b/proto/test/v1/test_v1.proto @@ -5,11 +5,11 @@ option go_package = "gitea.badhouseplants.net/softplayer/softplayer-go-proto/pkg /** * Service for handling environments */ -service TestNoAuthService { +service PublicTestService { rpc Ping (PingRequest) returns (PingResponse) {} } -service TestAuthService { +service TestService { rpc Pong (PongRequest) returns (PongResponse) {} }