package
Version:
v0.0.1
Opens a new window with list of versions in this module.
Published: Jan 28, 2023
License: Apache-2.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Config struct {
Init Init `yaml:"init"`
Muilt []Muilt `yaml:"muilt"`
Package string `yaml:"package"`
}
type Init struct {
Handler string `yaml:"handler"`
Req InitReq `yaml:"req"`
Resp InitResp `yaml:"resp"`
}
type InitReq struct {
Field map[string]string `yaml:"field"`
}
type KeyVal[T, U any] struct {
Key T
Val U
}
type Muilt struct {
Handler string `yaml:"handler"`
Req Req `yaml:"req"`
Resp Resp `yaml:"resp"`
}
type Resp struct {
Name string `yaml:"name"`
NewType map[string]string `yaml:"newType"`
Body any `yaml:"body"`
}
type UseDefault struct {
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.