Created
August 28, 2019 17:05
-
-
Save ahmetb/782d56833c496c4070cb6d0daddd89f2 to your computer and use it in GitHub Desktop.
api/probe.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Package handler (directory named 'api/') is recognized | |
// by ZEIT Now v2 Lambda platform. | |
package handler | |
import ( | |
"net/http" | |
) | |
func init() { log.SetFlags(log.Lmicroseconds) } | |
var _ http.HandlerFunc = Probe // type check | |
func Probe(w http.ResponseWriter, req *http.Request) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment