Added Catalyst::IOC::LifeCycle::Request
[catagits/Catalyst-Runtime.git] / lib / Catalyst / IOC / LifeCycle / Request.pm
1 package Catalyst::IOC::LifeCycle::Request;
2 use Moose::Role;
3 use namespace::autoclean;
4
5 # based on Bread::Board::LifeCycle::Request from OX
6 # just behaves like a singleton - ::Request instances
7 # will get flushed after the response is sent
8 with 'Bread::Board::LifeCycle::Singleton';
9
10 1;