This commit is contained in:
2026-05-13 20:40:14 +08:00
parent bd13c842a8
commit c8a75ef2d5
17 changed files with 920 additions and 93 deletions

View File

@@ -0,0 +1,9 @@
//go:build !windows
package tray
import "context"
func start(_ context.Context, _ *Controller) (func(), error) {
return func() {}, nil
}