micro/broker/http/http.go

12 lines
244 B
Go
Raw Normal View History

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