10 lines
367 B
Go
10 lines
367 B
Go
|
|
// Package assets provides embedded static web assets for the SkyView application.
|
||
|
|
// This package embeds all files from the static/ directory at build time.
|
||
|
|
package assets
|
||
|
|
|
||
|
|
import "embed"
|
||
|
|
|
||
|
|
// Static contains all embedded static assets
|
||
|
|
// The files are accessed with paths like "static/index.html", "static/css/style.css", etc.
|
||
|
|
//go:embed static/*
|
||
|
|
var Static embed.FS
|