mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-15 18:08:30 -07:00
54a141abde
Merge in DNS/adguard-home from remove-client2 to master Squashed commit of the following: commit 0a0923494b0d1003e4f02f3a5f93d5248f0f2ded Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Jan 20 17:14:29 2023 +0300 all: rm old experimental beta (dir client2/) This project was unfortunately abandoned. v0.108.0 will have a different front-end and new APIs.
22 lines
415 B
Go
22 lines
415 B
Go
//go:build next
|
|
// +build next
|
|
|
|
package main
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/next/cmd"
|
|
)
|
|
|
|
// 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() {
|
|
cmd.Main(clientBuildFS)
|
|
}
|