aboutsummaryrefslogtreecommitdiff
path: root/cmd/acme/solve_http.go
blob: c23e356a4c1e2ae5d28506b73996e26cda2ed8ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package main

import "net/http"

type httpChallenge struct {
	http.Server
}

func (c *httpChallenge) Solve(token, keyAuth string) error {
	return nil
}

func (c *httpChallenge) Finish() error {
	return nil
}