first commit

This commit is contained in:
2022-03-17 15:59:24 +08:00
commit 2b0debb847
592 changed files with 73946 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package model
type AppConfig struct {
BasicConfig BasicConfig `yaml:"basic_config"`
Request Request `yaml:"request"`
Response Response `yaml:"response"`
}
type BasicConfig struct {
Method string `yaml:"method"`
Url string `yaml:"url"`
}
type Request struct {
TokenName string `yaml:"token_name"`
//FieldsOfHeader []string `yaml:"fields_of_header"`
//FieldsOfBody map[interface{}]interface{} `yaml:"fields_of_body"`
}
type Response struct {
//ContentType string `yaml:"content_type"`
UidName string `yaml:"uid_name"`
SuccessResult map[interface{}]interface{} `yaml:"success_result"`
}