17 lines
206 B
Go
17 lines
206 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
type myHandler struct{}
|
|
|
|
func (mh *myHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
}
|