Skip to content

Instantly share code, notes, and snippets.

View CheerfulSatchel's full-sized avatar
💭
Living my best life~

James Wu CheerfulSatchel

💭
Living my best life~
View GitHub Profile
@reagent
reagent / 00_README.md
Last active January 29, 2024 13:31
Custom HTTP Routing in Go

Custom HTTP Routing in Go

Basic Routing

Responding to requests via simple route matching is built in to Go's net/http standard library package. Just register the path prefixes and callbacks you want invoked and then call the ListenAndServe to have the default request handler invoked on each request. For example:

package main

import (