// Package xetup exposes embedded PowerShell scripts and assets for use by // cmd/xetup. Placing the embed declarations here (at the module root) gives // the //go:embed directives a clear, stable relative path to the content. package xetup import "embed" // Scripts holds all PowerShell scripts from the scripts/ directory. // //go:embed scripts var Scripts embed.FS // Assets holds all deployment assets from the assets/ directory. // //go:embed assets var Assets embed.FS