11 lines
261 B
Go
11 lines
261 B
Go
// SPDX-License-Identifier: EUPL-1.2
|
|
|
|
package api
|
|
|
|
import "embed"
|
|
|
|
// Assets holds the built UI bundle (core-scm.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
|