use lib "$FindBin::Bin/../lib";
-=begin comment
-# use this block if you don't need middleware, and only have a single target Dancer app to run here
-use App::LazyShoppingList::API;
-
-App::LazyShoppingList::API->to_app;
-
-=end comment
-
-=begin comment
-# use this block if you want to include middleware such as Plack::Middleware::Deflater
-
-use App::LazyShoppingList::API;
-use Plack::Builder;
-
-builder {
- enable 'Deflater';
- App::LazyShoppingList::API->to_app;
-}
-
-=end comment
-
-=cut
-
-# use this block if you want to mount several applications on different path
-
use App::LazyShoppingList::API::v1;
-#use App::LazyShoppingList::WEB;
+use App::LazyShoppingList::Web;
use Plack::Builder;
builder {
- mount '/api/v1' => App::LazyShoppingList::API::v1->to_app;
- # mount '/' => App::REST::LazyShoppingList::WEB->to_app;
+ enable 'Deflater';
+ mount '/api/v1' => App::LazyShoppingList::API::v1->to_app;
+ mount '/' => App::LazyShoppingList::Web->to_app;
}