The mighty, self-hostable Git server for the command line 🍦
1package models 2 3// 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}