File: TestStorage.pm

package info (click to toggle)
liblog-dispatch-message-passing-perl 0.009-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 280 kB
  • sloc: perl: 1,406; makefile: 9; sh: 4
file content (16 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package TestStorage;
use Moose;

with qw/
    Log::Message::Structured
    Log::Message::Structured::Stringify::AsJSON
/;

has foo => (
    is => 'ro',
    isa => 'Str',
    required => 1,
);

1;