Skip to content

Commit 97b52b1

Browse files
author
runneradmin
committed
[skip ci] sync: add changes from local folder
1 parent f7ed155 commit 97b52b1

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This is a Hello World code snippet
2+
print("Hello world!")
3+
# End of code snippet

src/ansys/api/test/v0/test.proto

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
syntax = "proto3";
2+
3+
package ansys.api.test.v0.test;
4+
5+
service Test {
6+
rpc DoSomething (TestingRequest) returns (TestingReply) {}
7+
}
8+
9+
message TestingRequest {
10+
string name = 1;
11+
}
12+
13+
message TestingReply {
14+
string message = 1;
15+
}

0 commit comments

Comments
 (0)