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

24
pubsub/README.md Normal file
View File

@@ -0,0 +1,24 @@
# PubSub
A simple example of using PubSub
## Overview
This example is a simple pubsub service which subscribes to a topic and periodically publishes
to the same place. The interface for how it works may change but its simple enough.
## Usage
```
# start micro
micro server
# run pubsub
micro run pubsub
# check status
micro status
# get the logs
micro logs pubsub
```