diff --git a/errors.go b/errors.go index c97327b..4aca7a3 100644 --- a/errors.go +++ b/errors.go @@ -1,3 +1,5 @@ +//go:build linux + package systemctl import ( diff --git a/helpers.go b/helpers.go index 37d8da6..bcb3fe2 100644 --- a/helpers.go +++ b/helpers.go @@ -1,3 +1,5 @@ +//go:build linux + package systemctl import ( diff --git a/structs.go b/structs.go index 0a0458a..41d8fe7 100644 --- a/structs.go +++ b/structs.go @@ -1,3 +1,5 @@ +//go:build linux + package systemctl type Options struct { diff --git a/systemctl.go b/systemctl.go index cce2688..2b4b2e9 100644 --- a/systemctl.go +++ b/systemctl.go @@ -1,3 +1,5 @@ +//go:build linux + package systemctl import ( diff --git a/util.go b/util.go index 2cc88cd..a17e249 100644 --- a/util.go +++ b/util.go @@ -1,3 +1,5 @@ +//go:build linux + package systemctl import (