From 52ccd900c7a2baa60eaf29663299c4ac04d1d8bf Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sat, 23 Nov 2019 22:50:13 +0000 Subject: [PATCH] reorder service struct fields --- runtime/runtime.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/runtime.go b/runtime/runtime.go index e323614d..8f7a4406 100644 --- a/runtime/runtime.go +++ b/runtime/runtime.go @@ -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 }