view Lib/DOM/Providers/Perfomance.pm @ 99:6dd659f6f66c

Minor changes, DOM schema is in development (in the aspect of a forms)
author wizard
date Wed, 05 May 2010 17:33:55 +0400
parents 16ada169ca75
children
line wrap: on
line source

use strict;

package DOM::Providers::Perfomance;
use PerfCounter;

sub GetProviderInfo {
    return {
        Name => 'Perfomance',
        Host => 'DOM::Site',
        Objects => {
            Counters => \%PerfCounter::Counters
        }
    }
}
1;