12 lines
230 B
Go
12 lines
230 B
Go
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
|
||
|
|
// Package web embeds static assets and templates into the binary.
|
||
|
|
package web
|
||
|
|
|
||
|
|
import "embed"
|
||
|
|
|
||
|
|
//go:embed templates
|
||
|
|
var TemplatesFS embed.FS
|
||
|
|
|
||
|
|
//go:embed static
|
||
|
|
var StaticFS embed.FS
|