feat: add readme and add 3 commands for pen test regex

This commit is contained in:
2024-10-20 20:33:24 +02:00
parent fd53a7b3cb
commit 45de93c38c
5 changed files with 194 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
package systems.brn.regexinghoppers.config;
public class PermissionEntry {
public String name;
public int level;
public PermissionEntry(String name, int level) {
this.name = name;
this.level = level;
}
}