mirror of
https://github.com/pocketbase/pocketbase.git
synced 2026-01-16 18:29:31 -05:00
11 lines
209 B
Go
11 lines
209 B
Go
//go:build !(js && wasm)
|
|
|
|
package core
|
|
|
|
import "syscall"
|
|
|
|
// execve invokes the execve(2) system call.
|
|
func execve(argv0 string, argv []string, envv []string) error {
|
|
return syscall.Exec(argv0, argv, envv)
|
|
}
|