aboutsummaryrefslogtreecommitdiff
path: root/solve_dns.go
diff options
context:
space:
mode:
Diffstat (limited to 'solve_dns.go')
-rw-r--r--solve_dns.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/solve_dns.go b/solve_dns.go
new file mode 100644
index 0000000..4c26fc0
--- /dev/null
+++ b/solve_dns.go
@@ -0,0 +1,11 @@
+package acme
+
+type dnsSolver struct{}
+
+func (s *dnsSolver) Solve(token, keyAuth string) error {
+ return errNotImplemented
+}
+
+func (s *dnsSolver) Solved() error {
+ return nil
+}