types

package
v1.3.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 19, 2021 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Endpoint

type Endpoint struct {
	Path    string
	Method  string
	Handler func(context.Context, *http.Request, map[string]string) (Responser, error)
}

type ErrorResponse

type ErrorResponse struct {
	Code string      `json:"code"`
	Msg  string      `json:"msg"`
	Ctx  interface{} `json:"ctx"`
}

type HTTPResponse

type HTTPResponse struct {
	Status     int
	Error      *ErrorResponse
	Content    interface{}
	Compose    bool // compose response with common structure
	RawContent bool // return raw Content
}

func ErrorResp

func ErrorResp(code string, msg string) HTTPResponse

func (HTTPResponse) GetContent

func (r HTTPResponse) GetContent() interface{}

func (HTTPResponse) GetStatus

func (r HTTPResponse) GetStatus() int

func (HTTPResponse) Raw

func (r HTTPResponse) Raw() bool

type Responser

type Responser interface {
	GetStatus() int
	GetContent() interface{}
	Raw() bool
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL