1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-23 17:53:05 +02:00

reorder service struct fields

This commit is contained in:
Asim Aslam 2019-11-23 22:50:13 +00:00
parent cae4148594
commit 52ccd900c7

View File

@ -80,14 +80,14 @@ type Event struct {
type Service struct {
// Name of the service
Name string
// Version of the service
Version string
// url location of source
Source string
// Path to store source
Path string
// Exec command
Exec []string
// Version of the service
Version string
// Metadata stores metadata
Metadata map[string]string
}