Initial upload
This commit is contained in:
commit
cefd7abe8a
19 changed files with 1027 additions and 0 deletions
15
app/main.go
Normal file
15
app/main.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
package main
|
||||
|
||||
func main() {
|
||||
|
||||
m := &Model{}
|
||||
c := &Controller{Model: m}
|
||||
v := NewView(c)
|
||||
|
||||
m.Controller = c
|
||||
c.View = v
|
||||
|
||||
c.DiscoverDevices()
|
||||
c.View.Start()
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue