initial commit
This commit is contained in:
@@ -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))
|
||||
}
|
||||
Reference in New Issue
Block a user