Remove one of the duck embeds, go mod tidy
Some checks failed
/ docker (push) Failing after 32s

Seriously, why did I still have the duck image embedded twice when only
the fs embed was used?
This commit is contained in:
Melody Becker 2025-06-11 16:19:25 +02:00
parent 9afb2d36f0
commit 1169cd74a0
Signed by: mstar
SSH key fingerprint: SHA256:9VAo09aaVNTWKzPW7Hq2LW+ox9OdwmTSHRoD4mlz1yI
3 changed files with 4 additions and 9 deletions

View file

@ -34,9 +34,6 @@ import (
//go:embed frontend-noscript
// var nojsFS embed.FS
//go:embed duck.webp
var defaultDuck string
//go:embed duck.webp
var duckFS embed.FS
@ -131,7 +128,6 @@ func newServer() {
}
public := webpublic.New(
fmt.Sprintf(":%v", config.GlobalConfig.General.PrivatePort),
&defaultDuck,
duckFS,
)
go func() {