mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
15 lines
215 B
Go
15 lines
215 B
Go
package analyzer
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed files/deployments.json
|
|
var collectedDeployments string
|
|
|
|
//go:embed files/nodes.json
|
|
var collectedNodes string
|
|
|
|
//go:embed files/jobs.json
|
|
var collectedJobs string
|