mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-27 20:38:41 +08:00
89ce5e492b
Co-authored-by: anqiansong <anqiansong@bytedance.com>
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
|
|
}
|