mellium
/
verbmux
Archived
7
0
Fork 0
An experimental HTTP multiplexer that routes based on HTTP methods. https://mellium.im/verbmux/
This repository has been archived on 2022-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Sam Whited a12bc44823
verbmux: update readme and targeted Go version
Signed-off-by: Sam Whited <sam@samwhited.com>
2022-03-15 23:38:46 -04:00
.builds .builds: verify DCO signature and sync to GitHub 2020-05-03 23:20:29 -04:00
.gitignore Initial verb muxer outline 2017-04-04 18:36:07 -05:00
DCO .builds: verify DCO signature and sync to GitHub 2020-05-03 23:20:29 -04:00
LICENSE all: add BSD 2-clause license 2020-03-31 11:50:50 -04:00
README.md verbmux: update readme and targeted Go version 2022-03-15 23:38:46 -04:00
go.mod verbmux: update readme and targeted Go version 2022-03-15 23:38:46 -04:00
verbmux.go Add better tests and prepare for release 2017-09-25 21:59:02 -05:00
verbmux_test.go Add better tests and prepare for release 2017-09-25 21:59:02 -05:00

README.md

verbmux

Issue Tracker Docs License

verbmux is an HTTP multiplexer that can be used to route HTTP requests in Go programs based on their verb (GET, SET, HEAD, etc). It handles OPTIONS requests automatically and is designed to be composable with other HTTP routers.

Use it in your program with:

import (
  "mellium.im/verbmux"
)