Skip to content

Instantly share code, notes, and snippets.

@anandkunal
Created December 6, 2010 04:05
Show Gist options
  • Select an option

  • Save anandkunal/729837 to your computer and use it in GitHub Desktop.

Select an option

Save anandkunal/729837 to your computer and use it in GitHub Desktop.
<?php
class MainHandler {
function get() {
echo "Hello, world";
}
}
Toro::serve(array(
"/" => "MainHandler",
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment