- Description:
- Network News Transfer Protocol (NNTP) in Go
- Owner:
- Last Change:
- Clone URL:
Commit Briefs
rename to regular README name (master)
nntp: minor doc fixups
Actually refer to the specification. No usenet, and redundant comments.
nntp: remove nntpserver package
Don't think there's anything special about it to separate it. Also abandon unfinished tests
nntp: remove unused files
Don't need GitHub to run tests for us. go.sum unused as no modules
nntp: move errors to nntp package
There's nothing special about the error codes and server implementation. It's just part of the protocol
nntp: remove couchserver example
No external deps
Branches
Tree
| LICENSE | commits | blame |
| README.md | commits | blame |
| client/ | |
| error.go | commits | blame |
| examples/ | |
| go.mod | commits | blame |
| nntp.go | commits | blame |
| server.go | commits | blame |
README.md
# go nntp I needed a way to gate some web services into traditional readers. I wrote an NNTP client and server. I'm still working on coming up with the exact right interfaces, but take a look at [the couchserver][couchserver] example to see what it takes to build a custom NNTP server with your own backend. [couchserver]: examples/couchserver/couchserver.go
