Files
bj_power/bj_power_workstation/internal/autostart/autostart_other.go
T

20 lines
263 B
Go
Raw Normal View History

//go:build !windows
package autostart
func CreateDesktopShortcut(appName string) error {
return nil
}
func Enable(appName string) error {
return nil
}
func Disable(appName string) error {
return nil
}
func IsEnabled(appName string) bool {
return false
}