Paired video mode encrypts movies, uses runner-only lock hints, bundles README plus artifacts per title, and supports batch forging with progress.
11 lines
141 B
Go
11 lines
141 B
Go
//go:build !windows
|
|
|
|
package main
|
|
|
|
import "os/exec"
|
|
|
|
func openMedia(path string) {
|
|
cmd := exec.Command("xdg-open", path)
|
|
_ = cmd.Start()
|
|
}
|