mirror of
https://github.com/plexusorg/Plex.git
synced 2024-11-17 09:06:12 +00:00
10 lines
115 B
Java
10 lines
115 B
Java
|
package me.totalfreedom.plex.services;
|
||
|
|
||
|
public interface IService
|
||
|
{
|
||
|
|
||
|
void run();
|
||
|
|
||
|
int repeatInSeconds();
|
||
|
}
|