annotate _test/temp.pl @ 415:3d24b10dd0d5
ref20150831
working on IMPL::Config::Container
author |
cin |
date |
Tue, 20 Oct 2015 07:32:55 +0300 |
parents |
ec6f2d389d1e |
children |
3ed0c58e9da3 |
rev |
line source |
210
|
1 #!/usr/bin/perl
|
|
2 use strict;
|
412
|
3 use Carp;
|
|
4 use Time::HiRes qw(gettimeofday tv_interval);
|
415
|
5 use Scalar::Util qw(blessed refaddr);
|
|
6 use YAML::XS qw(Dump);
|
407
|
7
|
415
|
8 print Dump {
|
|
9 services => [
|
|
10 { role => 'db', type => 'My::Data::Context', params => { '-ref' => 'some-role' } }
|
|
11 ]
|
|
12 };
|
407
|
13 1;
|