mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
9 lines
232 B
Go
9 lines
232 B
Go
// Package scripts embeds shell scripts shipped with the uc CLI so they can be
|
|
// executed on remote machines without being fetched from the network.
|
|
package scripts
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed install.sh
|
|
var InstallScript string
|