drone-scp/path.go
2022-06-15 15:29:09 +08:00

9 lines
108 B
Go

//go:build !windows
// +build !windows
package main
func getRealPath(path string) string {
return path
}