Skip to content

Instantly share code, notes, and snippets.

@AngeloR
Created April 11, 2011 16:18
Show Gist options
  • Save AngeloR/913790 to your computer and use it in GitHub Desktop.
Save AngeloR/913790 to your computer and use it in GitHub Desktop.
Lemondoo, a limonade-php tutorial
<?php
include('lib/limonade.php');
dispatch_get('/','get_todo_list');
dispatch_post('/','add_todo');
dispatch_get('/:id','get_todo');
dispatch_put('/:id','update_todo');
dispatch_delete('/:id','delete_todo');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment