mirror of
https://github.com/wahyd4/badger.git
synced 2026-08-09 05:15:58 +10:00
10 lines
154 B
Go
10 lines
154 B
Go
package models
|
|
|
|
import "github.com/jinzhu/gorm"
|
|
|
|
type FeatureToggle struct {
|
|
gorm.Model
|
|
Name string `json:"name"`
|
|
Enabled bool `json:"enabled"`
|
|
}
|