1package models23// Settings represents a settings record.4type Settings struct {5 ID int64 `db:"id"`6 Key string `db:"key"`7 Value string `db:"value"`8 CreatedAt string `db:"created_at"`9 UpdatedAt string `db:"updated_at"`10}
Fork https://github.com/charmbracelet/soft-serve
git clone git://git.lin.moe/go/soft-serve.git
1package models23// Settings represents a settings record.4type Settings struct {5 ID int64 `db:"id"`6 Key string `db:"key"`7 Value string `db:"value"`8 CreatedAt string `db:"created_at"`9 UpdatedAt string `db:"updated_at"`10}