11 lines
130 B
Go
11 lines
130 B
Go
//go:build !desktop_wails
|
|
|
|
package desktop
|
|
|
|
import "context"
|
|
|
|
func hideWindow(ctx context.Context) error {
|
|
_ = ctx
|
|
return nil
|
|
}
|