From c6eb143b51b0c105b157e9d408d6e9fcfaa5abfc Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Wed, 19 Feb 2025 20:01:21 -0500 Subject: add new command. Major refactor. --- main.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'main.py') diff --git a/main.py b/main.py index 7095cf2..67e7a35 100644 --- a/main.py +++ b/main.py @@ -1,11 +1,9 @@ from .note_tools.commands import ( - OrganizeNotesCommand, - NewNoteCommand + NewNoteCommand, + NewNoteForTomorrowCommand ) __all__= [ - "NewNoteCommand" + "NewNoteCommand", + "NewNoteForTomorrowCommand" ] - -def plugin_loaded(): - print("Note tools have been loaded.") -- cgit v1.1