]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/ACME/Challenge.pm
acme: add challenge plugins
[pve-common.git] / src / PVE / ACME / Challenge.pm
diff --git a/src/PVE/ACME/Challenge.pm b/src/PVE/ACME/Challenge.pm
new file mode 100644 (file)
index 0000000..40d32b6
--- /dev/null
@@ -0,0 +1,22 @@
+package PVE::ACME::Challenge;
+
+use strict;
+use warnings;
+
+sub supported_challenge_types {
+    return {};
+}
+
+sub setup {
+    my ($class, $acme, $authorization) = @_;
+
+    die "implement me\n";
+}
+
+sub teardown {
+    my ($self) = @_;
+
+    die "implement me\n";
+}
+
+1;