sk-matrix-project/app/wails/pkg/sdk/utils/utils.go
2023-07-23 03:36:43 +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])
}