Skip to content

Commit

Permalink
feat: create models based on API
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-kir-wwu committed Dec 13, 2023
1 parent 20f56a9 commit d0f6183
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/org/erathor/api/ErathorAPI.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
package org.erathor.api;

import org.erathor.api.controller.IErathorControllers;
import org.erathor.api.model.IModelFactory;

public interface ErathorAPI {
// This is the interface that the ErathorCore plugin implements.

IErathorControllers getControllers();

IModelFactory getModelFactory();

}
5 changes: 5 additions & 0 deletions src/main/java/org/erathor/api/model/IModelFactory.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package org.erathor.api.model;

public class IModelFactory {
public IExecution createExecution;
}

0 comments on commit d0f6183

Please sign in to comment.