aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--solver.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/solver.go b/solver.go
index 5bc7f85..0a4ce08 100644
--- a/solver.go
+++ b/solver.go
@@ -43,3 +43,11 @@ func (s webRootSolver) Solve(token, keyAuth string) error {
_, err = io.WriteString(fd, keyAuth)
return err
}
+
+type tlsSolver struct {
+ http.Server
+}
+
+func (s tlsSolver) Solve(token, keyAuth string) error {
+ return nil
+}