mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-26 11:28:46 +08:00
9 lines
117 B
Go
9 lines
117 B
Go
|
//go:build windows
|
||
|
// +build windows
|
||
|
|
||
|
package util
|
||
|
|
||
|
func ReadLink(name string) (string, error) {
|
||
|
return name, nil
|
||
|
}
|