commit - 807f644f282ede31199892fc79be5a46c0bd3814
commit + cd9ed71323af123563395ccd143ccac71a0ce910
blob - dedc4e7c011437367d7f7101c057fbdc85bd635e
blob + c63c57a41be687a6f17ce59a470914a95fa15db1
--- nntp.go
+++ nntp.go
-// Package nntp provides base NNTP definitions.
+// Package nntp implements the Network News Transfer Protocol as defined in RFC 3977.
package nntp
import (
// PostingStatus type for groups.
type PostingStatus byte
-// PostingStatus values.
const (
Unknown = PostingStatus(0)
PostingPermitted = PostingStatus('y')
return fmt.Sprintf("%c", ps)
}
-// Group represents a usenet newsgroup.
+// Group represents a newsgroup.
type Group struct {
Name string
Description string