2022-10-04 14:02:55 +01:00
|
|
|
//go:build next
|
2022-04-26 18:50:09 +01:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"embed"
|
|
|
|
|
2022-10-04 14:02:55 +01:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/next/cmd"
|
2022-04-26 18:50:09 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Embed the prebuilt client here since we strive to keep .go files inside the
|
|
|
|
// internal directory and the embed package is unable to embed files located
|
|
|
|
// outside of the same or underlying directory.
|
|
|
|
|
2023-01-23 09:47:59 +00:00
|
|
|
//go:embed build
|
2023-06-13 11:41:13 +01:00
|
|
|
var frontend embed.FS
|
2022-04-26 18:50:09 +01:00
|
|
|
|
|
|
|
func main() {
|
2023-06-13 11:41:13 +01:00
|
|
|
cmd.Main(frontend)
|
2022-04-26 18:50:09 +01:00
|
|
|
}
|