mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 04:22:01 +00:00
11 lines
145 B
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")
|
|
}
|