initial commit

This commit is contained in:
2026-08-16 21:18:45 -05:00
commit 1e05a01bcf
122 changed files with 29178 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
// Command vibedns is an authoritative DNS server, recursive resolver and
// filtering appliance with a web management interface.
//
// Everything it needs at runtime — HTML templates, CSS, JavaScript, fonts and
// schema migrations — is embedded in this binary. Deployment is copying one
// file and pointing it at a database path.
package main
import (
"context"
"os"
"github.com/owen/vibedns/internal/cli"
)
func main() {
os.Exit(cli.Main(context.Background(), os.Args[1:], os.Stdout, os.Stderr))
}