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