sk-matrix-project/app/wails/lib/utils/utils.go

14 lines
146 B
Go
Raw Normal View History

2023-07-09 21:03:39 +08:00
package utils
import (
"os"
"path/filepath"
)
type Utils struct {
}
func (u *Utils) CurrentDir() string {
return filepath.Dir(os.Args[0])
}