]> git.proxmox.com Git - pve-common.git/blame - src/PVE/ACME/Challenge.pm
section config: use croak so that the error is from the callers POV
[pve-common.git] / src / PVE / ACME / Challenge.pm
CommitLineData
f6a70fbf
FG
1package PVE::ACME::Challenge;
2
3use strict;
4use warnings;
5
6sub supported_challenge_types {
7 return {};
8}
9
10sub setup {
11 my ($class, $acme, $authorization) = @_;
12
13 die "implement me\n";
14}
15
16sub teardown {
17 my ($self) = @_;
18
19 die "implement me\n";
20}
21
221;