mirror of
https://github.com/go-micro/go-micro.git
synced 2025-11-23 21:44:41 +02:00
31 lines
303 B
Go
31 lines
303 B
Go
package template
|
|
|
|
var (
|
|
Readme = `# {{title .Alias}} Service
|
|
|
|
This is the {{title .Alias}} service
|
|
|
|
Generated with
|
|
|
|
` + "```" +
|
|
`
|
|
micro new {{.Alias}}
|
|
` + "```" + `
|
|
|
|
## Usage
|
|
|
|
Generate the proto code
|
|
|
|
` + "```" +
|
|
`
|
|
make proto
|
|
` + "```" + `
|
|
|
|
Run the service
|
|
|
|
` + "```" +
|
|
`
|
|
micro run .
|
|
` + "```"
|
|
)
|