context.go 161 B

12345678
  1. package kos
  2. type Context interface {
  3. Bind(v any) (err error)
  4. Param(s string) string
  5. Success(v any) (err error)
  6. Error(code int, reason string) (err error)
  7. }