Update content

This commit is contained in:
Paul Reilly
2023-05-12 21:19:35 -05:00
parent c41b8dc084
commit 98d7ffafe3
30 changed files with 300 additions and 307 deletions

View File

@ -0,0 +1,16 @@
package me.totalfreedom.service;
public abstract class Service
{
private final String name;
protected Service(String name)
{
this.name = name;
}
public abstract void start();
public abstract void stop();
}