12 lines
171 B
Go
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()
|
|
}
|