mirror of https://github.com/stashapp/stash.git
10 lines
120 B
Go
10 lines
120 B
Go
![]() |
//go:build !windows
|
||
|
// +build !windows
|
||
|
|
||
|
package desktop
|
||
|
|
||
|
func FatalError(err error) int {
|
||
|
// nothing to do
|
||
|
return 0
|
||
|
}
|