Skip to content

Commit

Permalink
Fixes #262 - Add delete command
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem committed Jun 23, 2024
1 parent c0d436c commit 17af111
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cli/src/main/java/com/manorrock/sphynx/cli/Cli.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ private void execute(String[] arguments) {
case "java" -> new JavaCli().execute(arguments);
case "list" -> listWorkflows();
case "create" -> createJob();
case "delete" -> deleteJob();
case "version" -> showVersion();
}
}
Expand Down Expand Up @@ -169,4 +170,8 @@ private void showVersion() {
private void createJob() {
System.out.println("TODO - create job");
}

private void deleteJob() {
System.out.println("TODO - delete job");
}
}

0 comments on commit 17af111

Please sign in to comment.