Initial upload

This commit is contained in:
MassiveBox 2025-05-29 22:52:44 +02:00
commit cefd7abe8a
Signed by: massivebox
GPG key ID: 9B74D3A59181947D
19 changed files with 1027 additions and 0 deletions

15
app/main.go Normal file
View 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()
}