import (
"net/url"
)
type Route struct{
filepath string
url url.URL
}
func hello(){
fmt.Println("Hello World")
}
func main() {
routes := map[Route]func{
Route{url.Parse("/home"), "/var/www/index.html"} : hello
}
}
我无法弄清楚是什么语法错误阻止我将 Route 结构映射到函数。
我收到此错误:
./main.go:24:26: 语法错误:意外{,期待(
./main.go:25:8: 语法错误:意外的 {,需要逗号或 )
皈依舞
相关分类