s1037989 / Mojolicious-Plugin-AppModel

A Developer's starter model for Mojolicious Apps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mojolicious-Plugin-AppModel

A Developer's starter model for Mojolicious Apps.

Synopsis

Full App

$self->plugin('AppModel'); my $id = $self->model('users')->add({name => 'Name', email => 'email'}); say $self->users->get($id);

Lite App

plugin 'AppModel'; my $id = app->model('users')->add({name => 'Name', email => 'email'}); say app->users->get($id);

Description

This plugin will use or generate model classes in these ways:

About

A Developer's starter model for Mojolicious Apps

License:Artistic License 2.0


Languages

Language:Perl 96.3%Language:Perl 6 3.7%