github.com/naoina/kocha@v0.7.1-0.20171129072645-78c7a531f799/cmd/kocha-build/testdata/app/controller/root.go (about)

     1  package controller
     2  
     3  import (
     4  	"github.com/naoina/kocha"
     5  )
     6  
     7  type Root struct {
     8  	*kocha.DefaultController
     9  }
    10  
    11  func (ro *Root) GET(c *kocha.Context) error {
    12  	return c.Render(nil)
    13  }