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