Added a placeholder method to delete objects from the database.

This commit is contained in:
Riley Schneider
2025-12-03 22:29:52 +01:00
parent daafd7d09e
commit 995fba6fce
3 changed files with 14 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ import java.nio.file.Path;
import java.sql.SQLException;
public interface Database {
public void connect() throws SQLException, IOException;
public void connect() throws SQLException;
public void close() throws SQLException;
public void clearDatabase() throws SQLException;
}