mirror of
https://github.com/percona/percona-toolkit.git
synced 2026-03-01 02:00:46 +08:00
15 lines
240 B
Perl
15 lines
240 B
Perl
package Percona::WebAPI::Resource::Config;
|
|
|
|
use Mo;
|
|
|
|
with 'Percona::WebAPI::Representation::JSON';
|
|
with 'Percona::WebAPI::Representation::HashRef';
|
|
|
|
has 'options' => (
|
|
is => 'ro',
|
|
isa => 'HashRef',
|
|
required => 1,
|
|
);
|
|
|
|
1;
|