7 lines
149 B
Bash
7 lines
149 B
Bash
# Run the server in the background.
|
|
$ go run examples/http-servers/http-servers.go &
|
|
|
|
# Access the `/hello` route.
|
|
$ curl localhost:8090/hello
|
|
hello
|