response.go 269 B

12345678910111213
  1. // This file is subject to a 1-clause BSD license.
  2. // Its contents can be found in the enclosed LICENSE file.
  3. package irc
  4. import "io"
  5. // ResponseWriter repersents a network stream, used to write
  6. // response data to.
  7. type ResponseWriter interface {
  8. io.WriteCloser
  9. }