1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-12-05 21:56:14 +02:00

[feature] dashboard (#2361)

This commit is contained in:
Johnson C
2021-11-24 11:27:23 +08:00
committed by GitHub
parent 90b3e4af0b
commit 70d2bd8a6b
32 changed files with 2606 additions and 0 deletions

12
cmd/dashboard/plugins.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
_ "github.com/asim/go-micro/plugins/registry/consul/v4"
_ "github.com/asim/go-micro/plugins/registry/etcd/v4"
_ "github.com/asim/go-micro/plugins/registry/eureka/v4"
_ "github.com/asim/go-micro/plugins/registry/gossip/v4"
_ "github.com/asim/go-micro/plugins/registry/kubernetes/v4"
_ "github.com/asim/go-micro/plugins/registry/nacos/v4"
_ "github.com/asim/go-micro/plugins/registry/nats/v4"
_ "github.com/asim/go-micro/plugins/registry/zookeeper/v4"
)