Mercurial > pub > Impl
view Lib/DOM/Providers/Security.pm @ 70:2dfb0b0ad12f
More docs
author | wizard |
---|---|
date | Wed, 24 Mar 2010 17:42:04 +0300 |
parents | 16ada169ca75 |
children |
line wrap: on
line source
use strict; package DOM::Providers::Security; use Security; sub GetProviderInfo { return { Name => 'Security', Host => 'DOM::Site', Objects => { Session => \&GetSession } } } sub GetSession { return Security->CurrentSession; } 1;