#! perl
# ABSTRACT: File::KeePass::Agent::KDBX program
# PODNAME: fkpx-agent


use warnings;
use strict;

use File::KeePass::Agent::KDBX;

our $VERSION = '0.901'; # VERSION

if (@ARGV && $ARGV[0] =~ /^--?h(?:elp)?$/) {
    if (eval { require Pod::Usage }) {
        Pod::Usage::pod2usage();
    }
    else {
        print "Usage: $0 FILEPATH [--pass=PASSWORD] [--keyfile=FILEPATH]\n";
    }
}

File::KeePass::Agent::KDBX::run();

__END__

=pod

=encoding UTF-8

=head1 NAME

fkpx-agent - File::KeePass::Agent::KDBX program

=head1 VERSION

version 0.901

=head1 SYNOPSIS

    fkpx-agent

    fkpx-agent FILEPATH [--pass=PASSWORD] [--keyfile=FILEPATH]

=head1 DESCRIPTION

This is a drop-in replacement for L<fkp-agent> that uses the newer L<File::KDBX> backend to add provide
support for loading newer KDBX4 files.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website
L<https://github.com/chazmcgarvey/File-KeePass-Agent-KDBX/issues>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=head1 AUTHOR

Charles McGarvey <ccm@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2022 by Charles McGarvey.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut
