nsfwapp/backend/tray_other.go
2026-06-23 10:35:56 +02:00

12 lines
171 B
Go

//go:build !windows
package main
import "context"
func runTray(ctx context.Context, onQuit func(), statsFn func() TrayStats) {
_ = onQuit
_ = statsFn
<-ctx.Done()
}