mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 08:10:08 +00:00
16 lines
183 B
Go
16 lines
183 B
Go
|
//go:build !dev
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"embed"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
//go:embed editor/*
|
||
|
configEditorFrontendFS embed.FS
|
||
|
|
||
|
configEditorFrontend = http.FS(configEditorFrontendFS)
|
||
|
)
|