how did I miss this file? see next commit...
[urisagit/Stem.git] / lib / Stem / InstallConfig.pm
CommitLineData
5a25fb02 1package Stem::InstallConfig;
2
3use strict;
4use warnings;
5
6use Stem::ConfigData;
7
8our %Config =
9 map { $_ => Stem::ConfigData->config( $_ ) }
10 Stem::ConfigData->config_names();
11
12our %__PACKAGE__ = %Config;
13
14#use Data::Dumper; print Dumper \%Config, \%__PACKAGE__; exit;
15
161;