mirror of
https://github.com/plexusorg/Plex.git
synced 2024-11-17 09:06:12 +00:00
2790d406ed
-> Switch Freeze CMD to use Punishment System -> Add Mute Event -> Register new Ban CMD -> Register Login Listener -> Add methods to Punishments -> Service System -> Have SQL and Mongo create a new table / collection for Bans -> Added more util methods
10 lines
115 B
Java
10 lines
115 B
Java
package me.totalfreedom.plex.services;
|
|
|
|
public interface IService
|
|
{
|
|
|
|
void run();
|
|
|
|
int repeatInSeconds();
|
|
}
|