2022-10-04 16:02:55 +03:00
|
|
|
//go:build !next
|
|
|
|
// +build !next
|
2022-04-26 20:50:09 +03:00
|
|
|
|
2019-06-10 11:33:19 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-05-21 14:55:42 +03:00
|
|
|
"embed"
|
|
|
|
|
2020-10-30 13:32:02 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/home"
|
2019-06-10 11:33:19 +03:00
|
|
|
)
|
|
|
|
|
2021-12-16 20:54:59 +03: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.
|
|
|
|
|
2021-05-21 14:55:42 +03:00
|
|
|
//go:embed build build2
|
|
|
|
var clientBuildFS embed.FS
|
|
|
|
|
2019-06-10 11:33:19 +03:00
|
|
|
func main() {
|
2021-05-21 14:55:42 +03:00
|
|
|
home.Main(clientBuildFS)
|
2019-06-10 11:33:19 +03:00
|
|
|
}
|