Games now have a page and everything works on multiple size screens, but I need to do a serious refactoring to normalize all data to be Go style.

This commit is contained in:
Zed A. Shaw 2025-09-18 14:57:52 -04:00
parent 31b224c6e8
commit 931c493928
9 changed files with 123 additions and 26 deletions

View file

@ -36,6 +36,10 @@ type Game struct {
Url string `db:"url" json:"url"`
Tags string `db:"tags" json:"tags"`
Video string `db:"video" json:"video"`
CurrentStatus string `db:"current_status" json:"current_status" form:"current_status"`
PlannedWork string `db:"planned_work" json:"planned_work" form:"planned_work"`
CodeUrl string `db:"code_url" json:"code_url" form:"code_url"`
HeaderImage string `db:"header_image" json:"header_image" form:"header_image"`
}
func Models() map[string]reflect.Type {