Create WelsonAppLoader.proto

This commit is contained in:
Namhyeon Go 2023-09-05 03:48:55 +09:00 committed by GitHub
parent 1eaae35649
commit 40774e5989
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,14 @@
syntax = "proto3";
service WelsonAppLoader {
rpc Run (AppRequest) returns (AppResponse) {}
}
message AppRequest {
string appName = 1;
}
// The response message containing the greetings
message AppResponse {
string responseText = 1;
}