add id getter for processors

This commit is contained in:
Joel Wetzell
2026-08-28 14:55:19 -05:00
parent f9287cc87e
commit 54ada59f6e
96 changed files with 456 additions and 33 deletions
+5 -1
View File
@@ -44,6 +44,10 @@ func (apd *ArtNetPacketDecode) Process(ctx context.Context, wrappedPayload commo
return wrappedPayload, nil
}
func (apd *ArtNetPacketDecode) Id() string {
return apd.config.Id
}
func (apd *ArtNetPacketDecode) Type() string {
return apd.config.Type
}
}