This commit is contained in:
Asim Aslam
2020-10-02 11:13:01 +01:00
commit 61fe9c169b
62 changed files with 4428 additions and 0 deletions

20
helloworld/README.md Normal file
View File

@@ -0,0 +1,20 @@
# Helloworld Service
This is the Helloworld service
## Overview
An example of how to write a simple helloworld service. This can also be generated using `micro new helloworld`.
## Usage
```
# run the server
micro server
# run the service
micro run github.com/micro/services/helloworld
## call the service
micro call helloworld Helloworld.Call '{"name": "Alice"}'
```