projects
/
pve-common.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix #1819: fork_worker: ensure sync'ed workers control terminal
[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;