mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-10 22:19:46 +08:00
17 lines
256 B
Go
17 lines
256 B
Go
//go:build linux
|
|
|
|
package start_at_login
|
|
|
|
func (p *Plugin) init() error {
|
|
// TBD
|
|
return nil
|
|
}
|
|
|
|
func (p *Plugin) StartAtLogin(enabled bool) error {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (p *Plugin) IsStartAtLogin() (bool, error) {
|
|
panic("not implemented")
|
|
}
|