]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/ACME/Challenge.pm
Move the code to proxmox-acme and add a dependency on it.
[pve-common.git] / src / PVE / ACME / Challenge.pm
diff --git a/src/PVE/ACME/Challenge.pm b/src/PVE/ACME/Challenge.pm
deleted file mode 100644 (file)
index 40d32b6..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-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;