Browse Source
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>feature/brute_force_protection
2 changed files with 20 additions and 0 deletions
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
description = "Umbrella : Search" |
||||
|
||||
dependencies{ |
||||
implementation(project(":core")) |
||||
} |
||||
|
||||
@ -0,0 +1,14 @@
@@ -0,0 +1,14 @@
|
||||
/* © SRSoftware 2025 */ |
||||
package de.srsoftware.umbrella.search; |
||||
|
||||
import static de.srsoftware.umbrella.core.exceptions.UmbrellaException.*; |
||||
|
||||
import de.srsoftware.umbrella.core.BaseHandler; |
||||
import de.srsoftware.umbrella.core.ModuleRegistry; |
||||
|
||||
public class SearchModule extends BaseHandler { |
||||
|
||||
public SearchModule(ModuleRegistry registry) { |
||||
super(registry); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue