# Packages
Package registry contains a registry of URL patterns to http.Handlers and a Register() method for registering a handler during init() in a module.
# Functions
Addr sets up the address for the server to listen on.
ErrorLog allows you to specify the errror log for the server.
LogRequests will log all of the incoming requests.
New is the constructor for an *http.Server.
ServeDir updates the server to serve files at fileDir path at URL pattern.
ServeFile updates the server to serve a file at URL pattern.
TLS passes a TLS config to the server to use.
# Type aliases
Option is an optional argument to the New() constructor.