@@ -84,8 +84,8 @@ func (d *DryccCmd) AppsList(results int) error {
8484 app .ID ,
8585 app .UUID ,
8686 app .Owner ,
87- app .Created ,
88- app .Updated ,
87+ d . formatTime ( app .Created ) ,
88+ d . formatTime ( app .Updated ) ,
8989 })
9090 }
9191 table .Render ()
@@ -118,8 +118,8 @@ func (d *DryccCmd) AppInfo(appID string) error {
118118 table .Append ([]string {"URL:" , url })
119119 table .Append ([]string {"UUID:" , app .UUID })
120120 table .Append ([]string {"Owner:" , app .Owner })
121- table .Append ([]string {"Created:" , app .Created })
122- table .Append ([]string {"Updated:" , app .Updated })
121+ table .Append ([]string {"Created:" , d . formatTime ( app .Created ) })
122+ table .Append ([]string {"Updated:" , d . formatTime ( app .Updated ) })
123123
124124 // print the app processes
125125 processes , _ , err := ps .List (s .Client , appID , defaultLimit )
@@ -151,8 +151,8 @@ func (d *DryccCmd) AppInfo(appID string) error {
151151 table .Append ([]string {"Domains:" })
152152 for index , domain := range domains {
153153 table .Append ([]string {"" , "Domain:" , domain .Domain })
154- table .Append ([]string {"" , "Created:" , domain .Created })
155- table .Append ([]string {"" , "Updated:" , domain .Updated })
154+ table .Append ([]string {"" , "Created:" , d . formatTime ( domain .Created ) })
155+ table .Append ([]string {"" , "Updated:" , d . formatTime ( domain .Updated ) })
156156 if len (domains ) > index + 1 {
157157 table .Append ([]string {"" })
158158 }
0 commit comments