Categorygithub.com/pghq/go-tea
repositorypackage
0.3.0
Repository: https://github.com/pghq/go-tea.git
Documentation: pkg.go.dev

# Packages

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

# README

go-tea

Golang entrypoint for REST web apps and client libraries (internal only).

Installation

go-tea may be installed using the go get command:

go get github.com/pghq/go-tea

Usage

To create a new router:

import "github.com/pghq/go-tea"

r := tea.NewRouter("")
r.Route("GET", "/test", func(w http.ResponseWriter, r *http.Request){})