1
0
mirror of https://github.com/bingohuang/docker-labs.git synced 2025-10-04 17:33:21 +08:00

Add ping handler and listen on tcp4 addresses

This commit is contained in:
Marcos Lilljedahl
2016-10-08 03:26:22 +02:00
parent dde49d8700
commit 0d693b344c
2 changed files with 8 additions and 1 deletions

6
handlers/ping.go Normal file
View File

@@ -0,0 +1,6 @@
package handlers
import "net/http"
func Ping(rw http.ResponseWriter, req *http.Request) {
}