yans/internal/protocol/nntp_response.go

13 lines
184 B
Go
Raw Normal View History

2022-02-03 16:44:08 +00:00
package protocol
import "fmt"
type NNTPResponse struct {
Code int
Message string
}
func (nr NNTPResponse) String() string {
return fmt.Sprintf("%d %s", nr.Code, nr.Message)
}