19 lines
536 B
Java
19 lines
536 B
Java
/*
|
|
* Copyright (C) 2025 Minecon724
|
|
* Tweaks724 is licensed under the GNU General Public License. See the LICENSE.md file
|
|
* in the project root for the full license text.
|
|
*/
|
|
|
|
package eu.m724.tweaks.module.auth;
|
|
|
|
import eu.m724.tweaks.module.TweaksModule;
|
|
|
|
public class AuthModule extends TweaksModule {
|
|
@Override
|
|
protected void onInit() {
|
|
var authStorage = new AuthStorage(getPlugin());
|
|
|
|
registerEvents(new AuthListener(authStorage));
|
|
registerCommand("tauth", new AuthCommands(authStorage));
|
|
}
|
|
}
|