mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-29 21:56:40 +00:00
* Use WinRT COM for Windows toasts instead of fyne's PowerShell path * Quote autostart path and split HKCU registry into per-user component
10 lines
141 B
Go
10 lines
141 B
Go
//go:build !windows
|
|
|
|
package notifier
|
|
|
|
import "fyne.io/fyne/v2"
|
|
|
|
func newNotifier(app fyne.App) Notifier {
|
|
return &fyneNotifier{app: app}
|
|
}
|