Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. Response Controller::process(const Request& rq) {
  2. if (rq.uri() == "/v1/foos") {
  3. return {list_all_foos(), 200};
  4. }
  5. return {"", 404};
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement