]> git.proxmox.com Git - pve-common.git/blob - src/PVE/ACME/Challenge.pm
PVE::CLIHandler::print_text_table - add option $sort_key
[pve-common.git] / src / PVE / ACME / Challenge.pm
1 package PVE::ACME::Challenge;
2
3 use strict;
4 use warnings;
5
6 sub supported_challenge_types {
7 return {};
8 }
9
10 sub setup {
11 my ($class, $acme, $authorization) = @_;
12
13 die "implement me\n";
14 }
15
16 sub teardown {
17 my ($self) = @_;
18
19 die "implement me\n";
20 }
21
22 1;