7 lines
112 B
Go
7 lines
112 B
Go
package handlers
|
|
|
|
import "net/http"
|
|
|
|
type Handler interface {
|
|
Handle(w http.ResponseWriter, r *http.Request)
|
|
}
|