https://github.com/davsk/teapot
Package teapot implements HTCPCP-TEA.
https://github.com/davsk/teapot
go golang-package htcpcp-tea protocol rfc2616
Last synced: 5 months ago
JSON representation
Package teapot implements HTCPCP-TEA.
- Host: GitHub
- URL: https://github.com/davsk/teapot
- Owner: davsk
- License: isc
- Created: 2014-08-26T18:24:21.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2018-05-17T12:00:24.000Z (about 8 years ago)
- Last Synced: 2026-01-12T00:34:39.670Z (5 months ago)
- Topics: go, golang-package, htcpcp-tea, protocol, rfc2616
- Language: Go
- Homepage: http://davsk.net/administrator
- Size: 10.7 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
teapot
======
Package teapot implements HTCPCP-TEA.
### documentation:
* https://godoc.org/github.com/davsk/teapot
### reference:
* https://www.ietf.org/rfc/rfc2324.txt
* http://www.rfc-editor.org/rfc/rfc7168.txt
* http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
* https://en.wikipedia.org/wiki/Hyper_Text_Coffee_Pot_Control_Protocol#Protocol
### usage:
```GO
import (
"net/http"
"github.com/davsk.net/teapot"
)
init (
http.HandleFunc("/teacup", teapot.Handler)
)
```