feat: tray icon, connect to home assistant, misc functions

This commit is contained in:
2025-07-31 16:24:25 -05:00
parent 74abe9d2e4
commit 7a2b778803
3 changed files with 145 additions and 9 deletions

5
internal/misc.go Normal file
View File

@@ -0,0 +1,5 @@
package internal
func Ptr[T any](value T) *T {
return &value
}