aboutsummaryrefslogtreecommitdiff
path: root/cmd/acme/solve_http.go
blob: 39efb4e262bcb302fe854c84417706d93af75115 (plain)
1
2
3
4
5
6
7
8
9
10
11
package main

import "net/http"

type httpChallenge struct {
	http.Server
}

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