mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Open stash in system tray on Windows/MacOS * Add desktop notifications * MacOS Bundling * Add binary icon Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
14 lines
250 B
Go
14 lines
250 B
Go
// +build !windows
|
|
|
|
package fixconsole
|
|
|
|
// On non-windows platforms, we don't need to do anything. The console
|
|
// starts off attached already, if it exists.
|
|
|
|
func AttachConsole() error {
|
|
return nil
|
|
}
|
|
|
|
func FixConsoleIfNeeded() error {
|
|
return nil
|
|
}
|