mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-07-28 01:27:58 +00:00
13 lines
386 B
Go
13 lines
386 B
Go
package picoclaw
|
|
|
|
import "embed"
|
|
|
|
// OnboardWorkspace embeds the default onboarding workspace template.
|
|
//
|
|
// Keeping this embed at the module root lets us source files directly from the
|
|
// tracked `workspace/` tree, instead of relying on a generated copy inside
|
|
// `cmd/...` that may be absent in clean checkouts and CI lint runs.
|
|
//
|
|
//go:embed workspace
|
|
var OnboardWorkspace embed.FS
|