You've already forked pocketbase
mirror of
https://github.com/pocketbase/pocketbase.git
synced 2025-11-24 15:14:30 +02: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)
|
|
}
|