make method to get data out of a module

This commit is contained in:
Joel Wetzell
2026-03-04 12:35:15 -06:00
parent 0d4ec24a9b
commit 6a21cc2639
21 changed files with 163 additions and 0 deletions

View File

@@ -123,3 +123,14 @@ func (us *UDPServer) Output(ctx context.Context, payload any) error {
func (us *UDPServer) Stop() {
us.cancel()
}
func (us *UDPServer) Get(key string) (any, error) {
switch key {
case "ip":
return us.Addr.IP.String(), nil
case "port":
return us.Addr.Port, nil
default:
return nil, errors.New("net.udp.server key not found")
}
}