Skip to content

Instantly share code, notes, and snippets.

@michilu
Created March 29, 2018 03:12
Show Gist options
  • Save michilu/4c9f289727f0df0ad30f794e4f0bd6c9 to your computer and use it in GitHub Desktop.
Save michilu/4c9f289727f0df0ad30f794e4f0bd6c9 to your computer and use it in GitHub Desktop.
package design
import (
. "github.com/goadesign/goa/design"
. "github.com/goadesign/goa/design/apidsl"
)
var _ = API("dummy", func() {
Title(`Dummy API`)
})
var _ = Resource("dummy", func() {
Action("get", func() {
Routing(GET(""))
Params(func() {
Param("bool", Boolean, "", func() {
Default(true)
})
})
Response(OK)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment