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 { type Service struct {
// Name of the service // Name of the service
Name string Name string
// Version of the service
Version string
// url location of source // url location of source
Source string Source string
// Path to store source // Path to store source
Path string Path string
// Exec command // Exec command
Exec []string Exec []string
// Version of the service
Version string
// Metadata stores metadata // Metadata stores metadata
Metadata map[string]string Metadata map[string]string
} }