add initial application structure with configuration, logging, and health check endpoints

This commit is contained in:
kever
2026-01-15 22:11:33 +08:00
parent ed8c3d55b8
commit fe67f09e72
19 changed files with 333 additions and 318 deletions

View File

@@ -165,10 +165,10 @@ func init() {
epicheroinfoDescRawJSON := epicheroinfoFields[16].Descriptor()
// epicheroinfo.RawJSONValidator is a validator for the "raw_json" field. It is called by the builders before save.
epicheroinfo.RawJSONValidator = epicheroinfoDescRawJSON.Validators[0].(func(string) error)
// epicheroinfoDescSetContentJSON is the schema descriptor for set_content_json field.
epicheroinfoDescSetContentJSON := epicheroinfoFields[17].Descriptor()
// epicheroinfo.SetContentJSONValidator is a validator for the "set_content_json" field. It is called by the builders before save.
epicheroinfo.SetContentJSONValidator = epicheroinfoDescSetContentJSON.Validators[0].(func(string) error)
// epicheroinfoDescContentJSONSet is the schema descriptor for content_json_set field.
epicheroinfoDescContentJSONSet := epicheroinfoFields[17].Descriptor()
// epicheroinfo.ContentJSONSetValidator is a validator for the "content_json_set" field. It is called by the builders before save.
epicheroinfo.ContentJSONSetValidator = epicheroinfoDescContentJSONSet.Validators[0].(func(string) error)
epicherouserbuildFields := entity.EpicHeroUserBuild{}.Fields()
_ = epicherouserbuildFields
// epicherouserbuildDescArtifactCode is the schema descriptor for artifact_code field.