kefu/tools/os_test.go

13 lines
136 B
Go
Raw Permalink Normal View History

2024-12-10 02:50:12 +00:00
package tools
import (
"log"
"os"
"testing"
)
func TestOs(t *testing.T) {
log.Println(os.Getwd())
log.Println(os.Executable())
}