Mercurial > pub > Impl
view Lib/DOM/Providers/Security.pm @ 96:4c55aed00ff2
Minor changes
author | wizard |
---|---|
date | Fri, 30 Apr 2010 15:03:38 +0400 |
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;