package models import "github.com/jinzhu/gorm" type FeatureToggle struct { gorm.Model Name string `json:"name"` Enabled bool `json:"enabled"` }