1
0
Fork 0
mirror of https://github.com/Luzifer/twitch-bot.git synced 2025-01-03 18:26:02 +00:00
twitch-bot/configEditor_prod.go

16 lines
183 B
Go
Raw Normal View History

//go:build !dev
package main
import (
"embed"
"net/http"
)
var (
//go:embed editor/*
configEditorFrontendFS embed.FS
configEditorFrontend = http.FS(configEditorFrontendFS)
)