kefu/tools/os_test.go

13 lines
136 B
Go

package tools
import (
"log"
"os"
"testing"
)
func TestOs(t *testing.T) {
log.Println(os.Getwd())
log.Println(os.Executable())
}