mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-07 15:10:01 +08:00
9 lines
118 B
Go
9 lines
118 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package pathx
|
|
|
|
func ReadLink(name string) (string, error) {
|
|
return name, nil
|
|
}
|