package main func main() { m := &Model{} c := &Controller{Model: m} v := NewView(c) m.Controller = c c.View = v c.DiscoverDevices() c.View.Start() }