blob: 3be2190c737517c90b742e4fb1968bb039b1dd56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package collector
import _ "embed"
// LinuxScript contains the embedded loadbars-remote.sh script for Linux hosts
//
//go:embed loadbars-remote.sh
var LinuxScript []byte
// DarwinScript contains the embedded loadbars-remote-darwin.sh script for macOS hosts
//
//go:embed loadbars-remote-darwin.sh
var DarwinScript []byte
|