test/app/main.go
Zeev Diukman 3f92043901 dns
2025-01-09 10:34:28 +02:00

21 lines
390 B
Go

package main
import (
"log"
"os"
"os/signal"
"github.com/zeevdiukman/test/app/helper"
)
func main() {
helper.P("MAIN!")
// Run the HTTP and DNS servers concurrently
go runHTTP()
// go runDNS()
// Wait for SIGINT (Ctrl+C) to gracefully shut down the server
stop := make(chan os.Signal, 1)
signal.Notify(stop, os.Interrupt)
<-stop
log.Println("Shutting down the server...")
}