2023-09-11 17:51:50 +03:00
|
|
|
//go:build !next
|
|
|
|
|
2019-06-10 11:33:19 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-05-21 14:55:42 +03:00
|
|
|
"embed"
|
2024-04-02 20:22:19 +03:00
|
|
|
// Embed tzdata in binary.
|
|
|
|
//
|
|
|
|
// See https://github.com/AdguardTeam/AdGuardHome/issues/6758
|
|
|
|
_ "time/tzdata"
|
2021-05-21 14:55:42 +03:00
|
|
|
|
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.
|
|
|
|
|
2023-02-01 15:41:34 +03:00
|
|
|
//go:embed build
|
2021-05-21 14:55:42 +03:00
|
|
|
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
|
|
|
}
|