You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dashboard/plugins.go

22 lines
793 B
Go

package main
import (
_ "github.com/go-micro/plugins/v4/broker/kafka"
_ "github.com/go-micro/plugins/v4/broker/mqtt"
_ "github.com/go-micro/plugins/v4/broker/nats"
_ "github.com/go-micro/plugins/v4/broker/rabbitmq"
_ "github.com/go-micro/plugins/v4/broker/redis"
_ "github.com/go-micro/plugins/v4/registry/consul"
_ "github.com/go-micro/plugins/v4/registry/etcd"
_ "github.com/go-micro/plugins/v4/registry/eureka"
_ "github.com/go-micro/plugins/v4/registry/gossip"
_ "github.com/go-micro/plugins/v4/registry/kubernetes"
_ "github.com/go-micro/plugins/v4/registry/nacos"
_ "github.com/go-micro/plugins/v4/registry/nats"
_ "github.com/go-micro/plugins/v4/registry/zookeeper"
_ "github.com/go-micro/plugins/v4/transport/grpc"
_ "github.com/go-micro/plugins/v4/transport/nats"
)