This repository has been archived on 2024-03-03. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
minifaas/ui/assets.go

18 lines
168 B
Go

// +build !dev
package ui
import (
"embed"
"net/http"
)
//go:embed *
var _assets embed.FS
var Assets http.FileSystem
func init() {
Assets = http.FS(_assets)
}