Documentation
¶
Index ¶
- Variables
- func NewGoccyEchoSerializer() *goccyEchoSerializer
- func NewUserError(msg string, details []string) echo.Map
- func V1_GET_Account(svc AccountService) echo.HandlerFunc
- func V1_POST_Account(svc AccountService) echo.HandlerFunc
- type AccountService
- type BulkProcessor
- type GETAccountResponse
- type POSTAccountRequest
- type SafeMap
- type ServiceLayer
- type Shard
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrInvalidAccountID = echo.Map{ "message": "invalid account id", "details": []string{"must be a valid uuid"}, } ErrAccountNotFound = echo.Map{ "message": "account not found", } ErrInternalServerError = echo.Map{ "message": http.StatusText(http.StatusInternalServerError), } )
Functions ¶
func NewGoccyEchoSerializer ¶
func NewGoccyEchoSerializer() *goccyEchoSerializer
func NewUserError ¶
func V1_GET_Account ¶
func V1_GET_Account(svc AccountService) echo.HandlerFunc
func V1_POST_Account ¶
func V1_POST_Account(svc AccountService) echo.HandlerFunc
Types ¶
type AccountService ¶
type BulkProcessor ¶
type BulkProcessor struct {
// contains filtered or unexported fields
}
func NewBulkProcessor ¶
func NewBulkProcessor() *BulkProcessor
func (*BulkProcessor) DoStuff ¶
func (bp *BulkProcessor) DoStuff(c echo.Context) error
type GETAccountResponse ¶
type POSTAccountRequest ¶
type SafeMap ¶
type SafeMap[K comparable, V any] struct { // contains filtered or unexported fields }
func NewSafeMap ¶
func NewSafeMap[K comparable, V any](size int) *SafeMap[K, V]
type ServiceLayer ¶
Click to show internal directories.
Click to hide internal directories.