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 }