Skip to content

Instantly share code, notes, and snippets.

@garystafford
garystafford / random-status.go
Last active March 24, 2024 12:21
Simple HTTP server that returns random HTTP status code, written in Go
// Simple HTTP server that returns random HTTP status code, written in Go.
// Author: Gary A. Stafford <[email protected]>
// Created: 11/04/2016
package main
import (
"io"
"math/rand"
"net/http"