Categorygithub.com/go-www/silverlining
repositorypackage
1.3.3
Repository: https://github.com/go-www/silverlining.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

GitHub last commit Go Reference

silverlining

Silverlining is a low-level HTTP Framework for Go Programming Language.

Installation

go get -u github.com/go-www/silverlining

Usage

package main

import "github.com/go-www/silverlining"

func main() {
	silverlining.ListenAndServe(":8080", func(r *silverlining.Context) {
		r.WriteFullBodyString(200, "Hello, World!")
	})
}