Skip to content

Instantly share code, notes, and snippets.

@andreastt
Created October 17, 2011 23:07
Show Gist options
  • Save andreastt/1294129 to your computer and use it in GitHub Desktop.
Save andreastt/1294129 to your computer and use it in GitHub Desktop.
my $config = $self->plugin('JSONConfig') => {
file => 'config/kultur.development.json',
stash_key => 'config'
};
@xantus
Copy link

xantus commented Oct 18, 2011

Mojolicious::Lite

my $config = plugin JSONConfig => {
        file      => 'config/kultur.development.json',
        stash_key => 'config'
};

Mojolicious

my $config = $self->plugin(JSONConfig => {
        file      => 'config/kultur.development.json',
        stash_key => 'config'
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment