This commit is contained in:
Karol Kuc
2019-12-24 14:36:19 +01:00
parent 671e1db2b0
commit c96b213558
7 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
package tech.allegro.hexagon.articles.adapters.persistence;
package tech.allegro.hexagon.articles.adapters.articledb;
class ArticleDatabaseModel {
/**

View File

@@ -1,4 +1,4 @@
package tech.allegro.hexagon.articles.adapters.persistence;
package tech.allegro.hexagon.articles.adapters.articledb;
import tech.allegro.hexagon.articles.domain.model.Article;
import tech.allegro.hexagon.articles.domain.model.ArticleId;

View File

@@ -1,4 +1,4 @@
package tech.allegro.hexagon.articles.adapters.events;
package tech.allegro.hexagon.articles.adapters.eventbus;
class ArticleCreatedEvent {
/**

View File

@@ -1,4 +1,4 @@
package tech.allegro.hexagon.articles.adapters.events;
package tech.allegro.hexagon.articles.adapters.eventbus;
class ArticleRetrievedEvent {
/**

View File

@@ -1,4 +1,4 @@
package tech.allegro.hexagon.articles.adapters.events;
package tech.allegro.hexagon.articles.adapters.eventbus;
import tech.allegro.hexagon.articles.domain.model.Article;
import tech.allegro.hexagon.articles.domain.ports.ArticleEventPublisher;

View File

@@ -1,4 +1,4 @@
package tech.allegro.hexagon.articles.adapters.twitter;
package tech.allegro.hexagon.articles.adapters.socialmedia;
class ArticleTwitterModel {
/**

View File

@@ -1,4 +1,4 @@
package tech.allegro.hexagon.articles.adapters.twitter;
package tech.allegro.hexagon.articles.adapters.socialmedia;
import tech.allegro.hexagon.articles.domain.model.Article;
import tech.allegro.hexagon.articles.domain.ports.SocialMediaPublisher;