mirror of
https://github.com/restic/restic.git
synced 2025-11-08 17:21:05 +00:00
8 lines
111 B
Go
8 lines
111 B
Go
package terminal
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func getpgrp() int {
|
|
pid, _ := unix.Getpgrp()
|
|
return pid
|
|
}
|