sk-matrix-project/app/wails/lib/utils/utils.go
2023-07-09 21:03:39 +08:00

14 lines
146 B
Go

package utils
import (
"os"
"path/filepath"
)
type Utils struct {
}
func (u *Utils) CurrentDir() string {
return filepath.Dir(os.Args[0])
}