Skip to content

Commit

Permalink
fix imports #8
Browse files Browse the repository at this point in the history
  • Loading branch information
Kasean committed Dec 29, 2023
1 parent 46e1ae6 commit db3648a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import org.springframework.kafka.annotation.KafkaListener;
import org.springframework.kafka.annotation.TopicPartition;
import org.springframework.stereotype.Service;
import org.student.messaging.KafkaTopics;
import org.student.messaging.topics.KafkaTopics;

@Service
public class ArchiverListener {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import org.apache.kafka.clients.producer.ProducerRecord;
import org.springframework.kafka.core.KafkaTemplate;
import org.springframework.stereotype.Service;
import org.student.messaging.KafkaTopics;
import org.student.messaging.topics.KafkaTopics;

@Service
public class ArchiverProducer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import org.springframework.kafka.annotation.KafkaListener;
import org.springframework.kafka.annotation.TopicPartition;
import org.springframework.stereotype.Service;
import org.student.messaging.KafkaTopics;
import org.student.messaging.topics.KafkaTopics;

@Service
public class ArtifactProcessorListener {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import org.apache.kafka.clients.producer.ProducerRecord;
import org.springframework.kafka.core.KafkaTemplate;
import org.student.messaging.KafkaTopics;
import org.student.messaging.topics.KafkaTopics;

public class ArtifactProcessorProducer {
private final KafkaTemplate<String, byte[]> template;
Expand Down

0 comments on commit db3648a

Please sign in to comment.