mirror of
https://github.com/plexusorg/Plex.git
synced 2024-11-17 00:56:12 +00:00
9 lines
102 B
Java
9 lines
102 B
Java
package dev.plex.services;
|
|
|
|
public interface IService
|
|
{
|
|
void run();
|
|
|
|
int repeatInSeconds();
|
|
}
|