Files
vercel/packages/now-cli/test/dev/fixtures/go/api/another.go

11 lines
145 B
Go

package another
import (
"fmt"
"net/http"
)
func Another(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "This is another page")
}