AdGuardDNS/main.go

14 lines
347 B
Go
Raw Normal View History

2023-03-18 17:11:10 +03:00
// Copyright (C) 2022-2023 AdGuard Software Ltd.
2020-08-17 21:16:03 +03:00
//
2022-08-26 14:18:35 +03:00
// This program is free software: you can redistribute it and/or modify it under
// the terms of the GNU Affero General Public License as published by the Free
// Software Foundation, version 3.
2020-08-17 21:16:03 +03:00
2022-08-26 14:18:35 +03:00
package main
import "github.com/AdguardTeam/AdGuardDNS/internal/cmd"
2020-08-17 21:16:03 +03:00
func main() {
2022-08-26 14:18:35 +03:00
cmd.Main()
2020-08-17 21:16:03 +03:00
}