Wraps the existing build, release, and SDK subsystems as REST endpoints via a BuildProvider that implements Provider, Streamable, Describable, and Renderable. Includes 6 Lit custom elements for GUI display within the Core IDE, following the same pattern established in go-scm. Co-Authored-By: Virgil <virgil@lethean.io>
11 lines
263 B
Go
11 lines
263 B
Go
// SPDX-Licence-Identifier: EUPL-1.2
|
|
|
|
package api
|
|
|
|
import "embed"
|
|
|
|
// Assets holds the built UI bundle (core-build.js and related files).
|
|
// The directory is populated by running `npm run build` in the ui/ directory.
|
|
//
|
|
//go:embed all:ui/dist
|
|
var Assets embed.FS
|