18 lines
269 B
Go
18 lines
269 B
Go
|
// Package util ...
|
||
|
//
|
||
|
// Description : util ...
|
||
|
//
|
||
|
// Author : go_developer@163.com<白茶清欢>
|
||
|
//
|
||
|
// Date : 2022-10-14 12:47
|
||
|
package util
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func Test_project_GetExecutablePath(t *testing.T) {
|
||
|
fmt.Println(Project.GetExecutablePath())
|
||
|
}
|