10 lines
102 B
Go
10 lines
102 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func root(w http.ResponseWriter, req *http.Request) {
|
||
|
return
|
||
|
}
|