You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
240 B

4 years ago
  1. package models
  2. type Bridge struct {
  3. ID int
  4. Name string
  5. Driver DriverType
  6. ConnectionString string
  7. }
  8. type DriverType string
  9. var (
  10. DTHue DriverType = "Hue"
  11. DTNanoLeaf DriverType = "NanoLeaf"
  12. )