write to app writer
parent
04baed6e1a
commit
594708b656
|
@ -13,9 +13,9 @@ func cmdInstance(c *cli.Context) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
fmt.Printf("URI : %s\n", instance.URI)
|
fmt.Fprintf(c.App.Writer, "URI : %s\n", instance.URI)
|
||||||
fmt.Printf("Title : %s\n", instance.Title)
|
fmt.Fprintf(c.App.Writer, "Title : %s\n", instance.Title)
|
||||||
fmt.Printf("Description: %s\n", instance.Description)
|
fmt.Fprintf(c.App.Writer, "Description: %s\n", instance.Description)
|
||||||
fmt.Printf("EMail : %s\n", instance.EMail)
|
fmt.Fprintf(c.App.Writer, "EMail : %s\n", instance.EMail)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue