- Notifications
You must be signed in to change notification settings - Fork0
official-stallion/stallion
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A fast message broker implemented with Golang programming language.Stallion is build using no external libraries, just internal Golang libraries.You can use Stallion in order to make communication between clients with sending andreceiving events.
Get package:
go get github.com/official-stallion/stallion@latest
Now to set the client up you need to create astallion server.
Stallion server is the message broker server.
package mainimport"github.com/official-stallion/stallion"funcmain() {iferr:=stallion.NewServer(":9090");err!=nil {panic(err)}}
Check the dockerdocumentation for stallion server.
You can create a Stallion server with username and password for Auth.
package mainimport"github.com/official-stallion/stallion"funcmain() {iferr:=stallion.NewServer(":9090","root","Pa$$word");err!=nil {panic(err)}}
About
Fast message broker implemented with Golang.