package models type Bridge struct { ID int Name string Driver DriverType ConnectionString string } type DriverType string var ( DTHue DriverType = "Hue" DTNanoLeaf DriverType = "NanoLeaf" )