mirror of
https://github.com/restic/restic.git
synced 2026-02-17 09:39:01 -05: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
|
|
}
|