Skip to content

Commit

Permalink
Add Gui to Chatbot
Browse files Browse the repository at this point in the history
  • Loading branch information
seandias committed Sep 11, 2024
1 parent 7bd704d commit 1329973
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/skd/SkD.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@

/**
* Main class for the SKD application.
*
* <p>
* The SKD application allows users to manage tasks, such as ToDos, Deadlines, and Events.
* Users can add, delete, mark, and unmark tasks, as well as save and load tasks from a file.
*
* <p>
* The application provides a command-line interface where users can input commands
* to interact with their task list. The commands are parsed and appropriate actions
* are taken, such as adding a new task or marking a task as done.
*
* <p>
* Tasks are saved to a file and loaded from the file on startup, ensuring persistence
* of the user's task list between sessions.
*/
Expand Down Expand Up @@ -102,7 +102,7 @@ public void run() {
* @return The response as a string.
*/
public String getResponse(String input) {
String response = "";
String response;
try {
CommandType commandType = Parser.parseCommand(input);

Expand Down

0 comments on commit 1329973

Please sign in to comment.