Skip to content

Instantly share code, notes, and snippets.

View Hoid's full-sized avatar
💭
Bugs are just happy little accidents

Tyler Cheek Hoid

💭
Bugs are just happy little accidents
View GitHub Profile
@IAmJSD
IAmJSD / test_server.go
Created May 13, 2023 19:51
Simple test server for testing HTTP requestors.
package main
import (
"encoding/json"
"os"
"strings"
"github.com/fasthttp/router"
"github.com/valyala/fasthttp"
)