From 97b52b1bc256ae4b94dd47f775b361fc69f1fd1a Mon Sep 17 00:00:00 2001 From: runneradmin Date: Mon, 3 Nov 2025 07:14:58 +0000 Subject: [PATCH] [skip ci] sync: add changes from local folder --- src/ansys/api/test/v0/hello_world.py | 3 +++ src/ansys/api/test/v0/test.proto | 15 +++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 src/ansys/api/test/v0/hello_world.py create mode 100644 src/ansys/api/test/v0/test.proto diff --git a/src/ansys/api/test/v0/hello_world.py b/src/ansys/api/test/v0/hello_world.py new file mode 100644 index 00000000..1344662d --- /dev/null +++ b/src/ansys/api/test/v0/hello_world.py @@ -0,0 +1,3 @@ +# This is a Hello World code snippet +print("Hello world!") +# End of code snippet diff --git a/src/ansys/api/test/v0/test.proto b/src/ansys/api/test/v0/test.proto new file mode 100644 index 00000000..35a095d7 --- /dev/null +++ b/src/ansys/api/test/v0/test.proto @@ -0,0 +1,15 @@ +syntax = "proto3"; + +package ansys.api.test.v0.test; + +service Test { + rpc DoSomething (TestingRequest) returns (TestingReply) {} +} + +message TestingRequest { + string name = 1; +} + +message TestingReply { + string message = 1; +}