mirror of
https://github.com/go-micro/go-micro.git
synced 2025-05-19 21:23:04 +02:00
10 lines
179 B
Go
10 lines
179 B
Go
|
package template
|
||
|
|
||
|
// Plugins is the plugins template used for new projects.
|
||
|
var Plugins = `package main
|
||
|
|
||
|
import (
|
||
|
_ "github.com/asim/go-micro/plugins/registry/kubernetes/v3"
|
||
|
)
|
||
|
`
|