mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
8 lines
100 B
Go
8 lines
100 B
Go
//go:build windows
|
|
|
|
package pathx
|
|
|
|
func ReadLink(name string) (string, error) {
|
|
return name, nil
|
|
}
|