10 lines
141 B
Go
10 lines
141 B
Go
//go:build !windows
|
|
|
|
package tray
|
|
|
|
import "context"
|
|
|
|
func start(_ context.Context, _ *Controller) (func(), error) {
|
|
return func() {}, nil
|
|
}
|