type.go 227 B

123456789
  1. package response
  2. import "git.sxidc.com/go-tools/api_binding/http_binding/binding_context"
  3. type SendFunc[T any] func(c *binding_context.Context, statusCode int, data T, err error)
  4. type IDType interface {
  5. ~string | ~uint64
  6. }