Created
December 17, 2025 19:50
-
-
Save pranavraja/022c23ecd51b218253ab0174d37db22f to your computer and use it in GitHub Desktop.
Revisions
-
pranavraja created this gist
Dec 17, 2025 .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,13 @@ package main import ( "net/http" "time" ) func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { time.Sleep(time.Minute) }) http.ListenAndServe(":5000", nil) }