Skip to content

Commit

Permalink
fix: Add test
Browse files Browse the repository at this point in the history
Signed-off-by: azerr <azerr@redhat.com>
  • Loading branch information
angelozerr committed Jul 11, 2024
1 parent 8e709df commit 4ebf103
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package org.acme.kafka;

public class Quote {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package org.acme.kafka;

import io.smallrye.mutiny.Multi;
import org.eclipse.microprofile.reactive.messaging.Channel;

public class QuoteResource {

@Channel("quotes")
Multi<Quote> quotes;

}

0 comments on commit 4ebf103

Please sign in to comment.