10 lines
163 B
Go
10 lines
163 B
Go
// Package web embeds the built SPA static files.
|
|
package web
|
|
|
|
import "embed"
|
|
|
|
// Dist contains the built web client files.
|
|
//
|
|
//go:embed dist/*
|
|
var Dist embed.FS
|