Files
diun/internal/notif/script/cmd.go
Ian Fijolek 5983df6491 Fix linter
Updates golangci-lint and updates to the correct config format.

Also renames some unused parameters to `_` to appese `revive`.
2023-12-13 15:13:40 -08:00

12 lines
116 B
Go

//go:build !windows
// +build !windows
package script
import (
"os/exec"
)
func setSysProcAttr(_ *exec.Cmd) {
}