mirror of
https://github.com/datarhei/core.git
synced 2025-10-05 16:07:07 +08:00
9 lines
144 B
Go
9 lines
144 B
Go
package server
|
|
|
|
import "net/http"
|
|
|
|
type Server interface {
|
|
ServeHTTP(w http.ResponseWriter, r *http.Request)
|
|
HTTPStatus() map[string]uint64
|
|
}
|