4 "github.com/revel/revel"
11 func (c App) Index() revel.Result {
15 // IecStatus represents the working status of IEC
16 // This structure is required by revel test cmd.
17 type IecStatus struct {
20 // ErrorHTML template.HTML
21 // ErrorSummary string
24 func (c App) GetStatus() revel.Result {
25 status := IecStatus{Status: "ok", Passed: true}
26 return c.RenderJSON(status)