Created
August 28, 2019 17:05
-
-
Save ahmetb/782d56833c496c4070cb6d0daddd89f2 to your computer and use it in GitHub Desktop.
Revisions
-
ahmetb created this gist
Aug 28, 2019 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ // 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) { }