mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
14 lines
358 B
Go
14 lines
358 B
Go
package main
|
|
|
|
func init() {
|
|
registerComponent([]Options{
|
|
{
|
|
Name: "Portmaster SnoreToast Notifier",
|
|
ShortIdentifier: "notifier-snoretoast", // would otherwise conflict with notifier.
|
|
Identifier: "notifier/portmaster-snoretoast",
|
|
AllowDownload: false,
|
|
AllowHidingWindow: true,
|
|
SuppressArgs: true,
|
|
},
|
|
})
|
|
}
|