working in first importer: JenaRosenkeller

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2024-12-19 00:56:40 +01:00
parent 2c76c61657
commit a17b322001
7 changed files with 123 additions and 9 deletions
@@ -1,6 +1,7 @@
/* © SRSoftware 2024 */
package de.srsoftware.cal.api;
import java.io.IOException;
import java.util.List;
/**
@@ -17,5 +18,5 @@ public interface Importer {
* get the list of appointments from the source associated with this importer
* @return a list of appointments
*/
List<Appointment> fetch();
List<Appointment> fetch() throws IOException;
}