forked from loafle/openapi-generator-original
* fix: change indent style to tab in the mustache to generate Go code * docs: standardize the language names for code blocks * docs: change indent style to tab in the code blocks * update: regenerate samples * `./bin/generate-samples.sh ./bin/configs/*.yaml`
7 lines
162 B
Go
7 lines
162 B
Go
package models
|
|
|
|
// HelloWorld is a sample data structure to make sure each endpoint return something.
|
|
type HelloWorld struct {
|
|
Message string `json:"message"`
|
|
}
|