1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-12 08:23:58 +02:00
go-micro/broker/http/http.go

12 lines
244 B
Go
Raw Normal View History

2018-11-18 22:40:43 +02:00
// Package http provides a http based message broker
2016-03-14 12:45:38 +02:00
package http
import (
"github.com/micro/go-micro/broker"
)
2018-11-18 22:40:43 +02:00
// NewBroker returns a new http broker
2016-03-16 00:12:28 +02:00
func NewBroker(opts ...broker.Option) broker.Broker {
return broker.NewBroker(opts...)
2016-03-14 12:45:38 +02:00
}