Skip to content

Commit

Permalink
feat!: Move Configuration and VerticleConfig data types to applic…
Browse files Browse the repository at this point in the history
…ation module

BREAKING CHANGE: Remove `Configuration` and `VerticleConfig` from services module and add them to the application module.
  • Loading branch information
fussel178 committed Oct 6, 2022
1 parent a40cdb2 commit 93bae37
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.wuespace.telestion.services.config;
package de.wuespace.telestion.application;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import java.util.Collections;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import de.wuespace.telestion.services.config.Configuration;

/**
* This is going to be the Telestion application. It launches the verticles which are specified in the configuration.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package de.wuespace.telestion.services.config;
package de.wuespace.telestion.application;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.JsonNode;
Expand Down

0 comments on commit 93bae37

Please sign in to comment.