github.com/shogo82148/goa-v1@v1.6.2/goagen/gen_swagger/internal/design/health.go (about)

     1  package design
     2  
     3  import (
     4  	. "github.com/shogo82148/goa-v1/design"
     5  	. "github.com/shogo82148/goa-v1/design/apidsl"
     6  )
     7  
     8  var _ = Resource("health", func() {
     9  
    10  	BasePath("/_ah")
    11  
    12  	Action("health", func() {
    13  		Routing(
    14  			GET("/health"),
    15  		)
    16  		Description("Perform health check.")
    17  		Response(OK, "text/plain")
    18  	})
    19  })