We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7ed155 commit 97b52b1Copy full SHA for 97b52b1
src/ansys/api/test/v0/hello_world.py
@@ -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
@@ -0,0 +1,15 @@
+syntax = "proto3";
+
+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