🎉 live server seems to be working now

This commit is contained in:
2026-05-14 14:29:57 +02:00
commit d72e439fd9
181 changed files with 47406 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
// ABOUTME: mDNS service discovery package
// ABOUTME: Discover and advertise Resonate servers on local network
// Package discovery provides mDNS service discovery for Resonate servers.
//
// Allows discovering servers on the local network and advertising
// server availability.
//
// Example:
//
// services, err := discovery.Discover(5 * time.Second)
// for _, svc := range services {
// fmt.Printf("Found: %s at %s:%d\n", svc.Name, svc.Address, svc.Port)
// }
package discovery