modules

package
v0.0.0-...-b9360c4 Latest Latest
Warning

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

Go to latest
Published: Dec 15, 2023 License: BSD-3-Clause Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
const ServiceName = "modules"

ServiceName is the name of the service as defined in the design. This is the same value that is set in the endpoint request contexts under the ServiceKey key.

Variables

View Source
var MethodNames = [1]string{"meta"}

MethodNames lists the service method names as defined in the design. These are the same values that are set in the endpoint request contexts under the MethodKey key.

Functions

func MakeBadRequest

func MakeBadRequest(err error) *goa.ServiceError

MakeBadRequest builds a goa.ServiceError from an error.

func MakeForbidden

func MakeForbidden(err error) *goa.ServiceError

MakeForbidden builds a goa.ServiceError from an error.

func MakeNotFound

func MakeNotFound(err error) *goa.ServiceError

MakeNotFound builds a goa.ServiceError from an error.

func MakeUnauthorized

func MakeUnauthorized(err error) *goa.ServiceError

MakeUnauthorized builds a goa.ServiceError from an error.

func NewMetaEndpoint

func NewMetaEndpoint(s Service) goa.Endpoint

NewMetaEndpoint returns an endpoint function that calls the method "meta" of service "modules".

Types

type Client

type Client struct {
	MetaEndpoint goa.Endpoint
}

Client is the "modules" service client.

func NewClient

func NewClient(meta goa.Endpoint) *Client

NewClient initializes a "modules" service client given the endpoints.

func (*Client) Meta

func (c *Client) Meta(ctx context.Context) (res *MetaResult, err error)

Meta calls the "meta" endpoint of the "modules" service.

type Endpoints

type Endpoints struct {
	Meta goa.Endpoint
}

Endpoints wraps the "modules" service endpoints.

func NewEndpoints

func NewEndpoints(s Service) *Endpoints

NewEndpoints wraps the methods of the "modules" service with endpoints.

func (*Endpoints) Use

func (e *Endpoints) Use(m func(goa.Endpoint) goa.Endpoint)

Use applies the given middleware to all the "modules" service endpoints.

type MetaResult

type MetaResult struct {
	Object interface{}
}

MetaResult is the result type of the modules service meta method.

type Service

type Service interface {
	// Meta implements meta.
	Meta(context.Context) (res *MetaResult, err error)
}

Service is the modules service interface.

Jump to

Keyboard shortcuts

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