This is an automated email from the ASF dual-hosted git repository. isudana pushed a commit to branch synapse-go in repository https://gitbox.apache.org/repos/asf/synapse.git
commit 167af20bccfdbaf3ccf7825cdb0d9ae35cf6cdbe Author: Isuru Loku Narangoda <isud...@gmail.com> AuthorDate: Wed Jan 1 07:00:22 2025 +0530 Initialize Go version of Apache Synapse --- src/main.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main.go b/src/main.go new file mode 100644 index 000000000..7665930b4 --- /dev/null +++ b/src/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, Go version of Apache Synapse!") +}