mirror of
https://github.com/Luzifer/go-latestver.git
synced 2024-11-09 23:50:05 +00:00
16 lines
180 B
Go
16 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)
|
||
|
)
|