More modernization for the database

This commit is contained in:
2026-05-19 02:30:16 -04:00
parent a980e26cc7
commit 64c691bb58
68 changed files with 588 additions and 456 deletions
@@ -1,16 +1,18 @@
package dev.plex.services;
import dev.plex.PlexBase;
import dev.plex.Plex;
import lombok.Getter;
@Getter
public abstract class AbstractService implements IService, PlexBase
public abstract class AbstractService implements IService
{
protected final Plex plugin;
private final boolean asynchronous;
private final boolean repeating;
public AbstractService(boolean repeating, boolean async)
public AbstractService(Plex plugin, boolean repeating, boolean async)
{
this.plugin = plugin;
this.repeating = repeating;
this.asynchronous = async;
}