mirror of
https://github.com/Luzifer/go-latestver.git
synced 2024-11-08 23:20:03 +00:00
15 lines
180 B
Go
15 lines
180 B
Go
//go:build !dev
|
|
|
|
package main
|
|
|
|
import (
|
|
"embed"
|
|
"net/http"
|
|
)
|
|
|
|
var (
|
|
//go:embed frontend/**
|
|
embeddedFrontend embed.FS
|
|
|
|
frontendFS http.FileSystem = http.FS(embeddedFrontend)
|
|
)
|