main.path.php 117 B

123456789
  1. <?php
  2. Router::paths(array(
  3. '/'=>function($res,$args){
  4. $res->write(
  5. Bugs::template('main')
  6. );
  7. }
  8. ));
  9. ?>