Advertisement
Guest User

Untitled

a guest
Dec 10th, 2011
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. get '/' => sub {
  2. my $self = shift;
  3. if (defined($self->param('channel'))) {
  4. my $channel = $self->param('channel');
  5. }else{
  6. my $channel = '#maxson';
  7. }
  8. $self->render('index', channel => $channel);
  9. };
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement