github.com/jacobsoderblom/buffalo@v0.11.0/buffalo/cmd/filetests/generate_action_existing.json (about)

     1  [{
     2    "path": "actions/comments.go",
     3    "contains": [
     4      "func CommentsShow(c buffalo.Context) error {",
     5  	  "func CommentsEdit(c buffalo.Context) error {",
     6      "func CommentsDestroy(c buffalo.Context) error {",
     7      "comments/edit.html",
     8      "comments/destroy.html",
     9  	  "comments/show.html"
    10    ]
    11  },
    12  {
    13    "path": "actions/app.go",
    14    "contains": [
    15      "app.GET(\"/comments/destroy\", CommentsDestroy)",
    16      "app.GET(\"/comments/edit\", CommentsEdit)",
    17      "app.GET(\"/comments/show\", CommentsShow)"
    18    ]
    19  }]