Added support for remote0

This commit is contained in:
mikx
2023-10-31 20:16:41 -04:00
commit 5c6e496688
88 changed files with 7833 additions and 0 deletions

14
examples/bench/main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"fmt"
"os"
"path/filepath"
"runtime"
)
func main() {
_, filename, _, _ := runtime.Caller(0)
fmt.Println("Current test filename: " + filename)
os.Chdir(filepath.Dir(filename))
}