mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-15 09:58:42 -07:00
ff9b24ad69
Merge in DNS/adguard-home from chlog-and-proj-skel to master Squashed commit of the following: commit 8e7c3e2eb50c559bdcd5862e72c16511dd8272da Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Feb 21 16:52:10 2023 +0300 all: upd proj skel
21 lines
398 B
Go
21 lines
398 B
Go
//go:build !next
|
|
|
|
package main
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/home"
|
|
)
|
|
|
|
// 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.
|
|
|
|
//go:embed build
|
|
var clientBuildFS embed.FS
|
|
|
|
func main() {
|
|
home.Main(clientBuildFS)
|
|
}
|