Skip to content

Commit

Permalink
#170 refactor & remove abstractions
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorsten Marx committed Feb 9, 2024
1 parent 59ab7f2 commit 38515d6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@
import com.github.thmarx.cms.server.handler.module.JettyRoutesHandler;
import com.github.thmarx.cms.server.handler.content.JettyTaxonomyHandler;
import com.github.thmarx.cms.server.handler.content.JettyViewHandler;
import com.github.thmarx.cms.server.jetty.modules.ModulesModule;
import com.github.thmarx.cms.server.jetty.modules.SiteHandlerModule;
import com.github.thmarx.cms.server.jetty.modules.SiteModule;
import com.github.thmarx.cms.server.jetty.modules.ThemeModule;
import com.github.thmarx.cms.server.configs.ModulesModule;
import com.github.thmarx.cms.server.configs.SiteHandlerModule;
import com.github.thmarx.cms.server.configs.SiteModule;
import com.github.thmarx.cms.server.configs.ThemeModule;
import com.github.thmarx.cms.utils.SiteUtils;
import com.github.thmarx.modules.api.ModuleManager;
import com.google.inject.Guice;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.thmarx.cms.server.jetty.modules;
package com.github.thmarx.cms.server.configs;

/*-
* #%L
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.thmarx.cms.server.jetty.modules;
package com.github.thmarx.cms.server.configs;

/*-
* #%L
Expand Down Expand Up @@ -42,8 +42,6 @@
import com.google.inject.name.Named;
import java.io.IOException;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.TimeUnit;
import lombok.RequiredArgsConstructor;
import org.eclipse.jetty.server.handler.ResourceHandler;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.thmarx.cms.server.jetty.modules;
package com.github.thmarx.cms.server.configs;

/*-
* #%L
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.thmarx.cms.server.jetty.modules;
package com.github.thmarx.cms.server.configs;

/*-
* #%L
Expand Down

0 comments on commit 38515d6

Please sign in to comment.