mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 12:16:38 +00:00
7 lines
164 B
Go
7 lines
164 B
Go
|
//go:build !windows
|
||
|
|
||
|
package platform
|
||
|
|
||
|
// ToPosixPath returns the input, as only windows might return backslashes.
|
||
|
func ToPosixPath(in string) string { return in }
|