aboutsummaryrefslogtreecommitdiff
path: root/solver.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-01-15 18:15:10 +0100
committerDimitri Sokolyuk <demon@dim13.org>2016-01-15 18:15:10 +0100
commitff08ab14548887658e6795833e2a707a31a0bbfe (patch)
tree3565799ca5732f3bce13e29068793fda249e3f98 /solver.go
parent5baae40c52a6322a4adbfc92e6336779fd009620 (diff)
Add TLS solver stub
Diffstat (limited to 'solver.go')
-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
+}