client

package
v0.0.0-...-42c4776 Latest Latest
Warning

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

Go to latest
Published: Jun 25, 2023 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Routes map[myrouter.RouteKey]func(w http.ResponseWriter, r *http.Request, ps common.QueryMap) = map[myrouter.RouteKey]func(w http.ResponseWriter, r *http.Request, ps common.QueryMap){
	{Path: "/api/v1/client/token", Method: "POST", NeedAuth: false}: uc.post,
}

Functions

This section is empty.

Types

type AccessToken

type AccessToken struct {
	Jwt       string `json:"jwt"`
	ExpiresAt int64  `json:"expires_at"`
}

type Client

type Client struct {
	Id        int          `json:"id"`
	Secret    string       `json:"secret"`
	CreatedAt time.Time    `json:"createdat"`
	UpdatedAt sql.NullTime `json:"updatedat"`
}

func NewClient

func NewClient(
	id int,
	secret string,
	createdAt time.Time,
	updatedAt sql.NullTime,
) Client

type PostResponse

type PostResponse struct {
	*myhttp.ResponseBase
	AccessToken *AccessToken `json:"access_token"`
}

func NewPostResponse

func NewPostResponse(res *myhttp.ResponseBase, token *AccessToken) *PostResponse

Jump to

Keyboard shortcuts

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