// MountController mounts the JavaScript example controller under "/js". func MountController(service *goa.Service) { // Serve static files under js service.ServeFiles("/js/*filepath", "/Users/nii236/Go/src/github.com/nii236/go-react-webpack/js") goa.Info(goa.RootContext, "mount", goa.KV{"ctrl", "JS"}, goa.KV{"action", "ServeFiles"}, goa.KV{"route", "GET /js/*"}) }
// MountController mounts the swagger spec controller under "/swagger.json". func MountController(service goa.Service) { service.ServeFiles("/swagger.json", "swagger/swagger.json") }