abedev / abe

API for Back-End (Haxe, NodeJS and Express)
54 stars 10 forks source link

values sources can now be paired to specific argument names #63

Closed fponticelli closed 9 years ago

fponticelli commented 9 years ago

Example:

  @:post("/post/")
  @:args(query(a,b), body(c))
  function restrictQuery(a : String, b : String, c : String) {
    // ...
  }