response.go 186 B

12345678910111213
  1. package rest
  2. import (
  3. "io"
  4. )
  5. type IResponse interface {
  6. IsError() bool
  7. KeySet(key string, val any)
  8. FileSet(name string, file io.ReadCloser)
  9. Close()
  10. Send(writer any) IErrorArgs
  11. }