mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-19 13:59:39 +08:00
12 lines
126 B
Go
12 lines
126 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package file
|
|
|
|
import "os"
|
|
|
|
func Pwd() (path string) {
|
|
path, _ = os.Getwd()
|
|
return
|
|
}
|