Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit 0de578f

Browse files
authored
Merge pull request #8 from CodelyTV/modules
Removed all modules folder
2 parents 8c5ada5 + c65ae0d commit 0de578f

File tree

21 files changed

+31
-33
lines changed

21 files changed

+31
-33
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
package tv.codely.mooc.notification.module.push.application.create;
1+
package tv.codely.mooc.notification.application.create;
22

3-
import tv.codely.mooc.video.module.video.domain.VideoPublished;
4-
import tv.codely.mooc.shared.application.DomainEventSubscriber;
3+
import tv.codely.mooc.video.domain.VideoPublished;
4+
import tv.codely.shared.application.DomainEventSubscriber;
55

66
public class SendPushToSubscribersOnVideoPublished implements DomainEventSubscriber<VideoPublished> {
77
@Override

β€Žsrc/mooc/main/tv/codely/mooc/notification/application/find/.gitkeepβ€Ž

Whitespace-only changes.

β€Žsrc/mooc/main/tv/codely/mooc/notification/domain/.gitkeepβ€Ž

Whitespace-only changes.

β€Žsrc/mooc/main/tv/codely/mooc/notification/infrastructure/.gitkeepβ€Ž

Whitespace-only changes.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package tv.codely.mooc.video.module.video.application.publish;
1+
package tv.codely.mooc.video.application.publish;
22

3-
import tv.codely.mooc.video.module.video.domain.Video;
4-
import tv.codely.mooc.video.module.video.domain.VideoDescription;
5-
import tv.codely.mooc.video.module.video.domain.VideoTitle;
6-
import tv.codely.mooc.shared.domain.EventBus;
3+
import tv.codely.mooc.video.domain.Video;
4+
import tv.codely.mooc.video.domain.VideoDescription;
5+
import tv.codely.mooc.video.domain.VideoTitle;
6+
import tv.codely.shared.domain.EventBus;
77

88
public final class VideoPublisher {
99
private final EventBus eventBus;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package tv.codely.mooc.video.module.video.domain;
1+
package tv.codely.mooc.video.domain;
22

3-
import tv.codely.mooc.shared.domain.AggregateRoot;
3+
import tv.codely.shared.domain.AggregateRoot;
44

55
public final class Video extends AggregateRoot {
66
private final VideoTitle title;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package tv.codely.mooc.video.module.video.domain;
1+
package tv.codely.mooc.video.domain;
22

33
public final class VideoDescription {
44
private final String value;

0 commit comments

Comments
Β (0)