We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ade1cfa commit 4357d45Copy full SHA for 4357d45
2 files changed
go.mod
@@ -1,3 +1,3 @@
1
-module tiny-requestbin
+module github.com/knktc/tiny-requestbin
2
3
go 1.23.2
main.go
@@ -10,6 +10,7 @@ import (
10
"io"
11
"log"
12
"net/http"
13
+ "os"
14
"strconv"
15
"strings"
16
"sync"
@@ -279,4 +280,7 @@ func printRequestToCLI(reqInfo RequestInfo) {
279
280
}
281
282
fmt.Printf("%s\n", strings.Repeat("=", 80))
283
+
284
+ // Force flush stdout to ensure immediate output
285
+ os.Stdout.Sync()
286
0 commit comments