Add test for auth/noauth

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2026-04-27 19:11:39 +02:00
parent 6329622466
commit 852179593d

View File

@@ -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) {}
}