Revert "feat(core): optional mdns service (#6192)"

This reverts commit 6122c0b8a9.
This commit is contained in:
Aiden Cline
2025-12-26 11:43:52 -06:00
parent e115bcd5e0
commit 40ba4cf21e
16 changed files with 115 additions and 237 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ process.on("uncaughtException", (e) => {
let server: Bun.Server<BunWebSocketData>
export const rpc = {
async server(input: { port: number; hostname: string; mdns?: boolean }) {
async server(input: { port: number; hostname: string }) {
if (server) await server.stop(true)
try {
server = Server.listen(input)