mirror of
https://github.com/github/codeql.git
synced 2026-07-31 07:22:56 +02:00
7 lines
140 B
Go
7 lines
140 B
Go
//go:build !windows
|
|
|
|
package util
|
|
|
|
// ResolvePath is a no-op on non-Windows platforms.
|
|
func ResolvePath(path string) string { return path }
|