summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorZach Berwaldt <zberwaldt@tutamail.com>2025-02-19 20:01:21 -0500
committerZach Berwaldt <zberwaldt@tutamail.com>2025-02-19 20:01:21 -0500
commitc6eb143b51b0c105b157e9d408d6e9fcfaa5abfc (patch)
tree407a42b94798d98a15a49198b65fe8a9a0b46b9e /main.py
parent6cd9cab41db438c3a94bfd441d6e18bec2026385 (diff)
add new command. Major refactor.
Diffstat (limited to 'main.py')
-rw-r--r--main.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/main.py b/main.py
index 7095cf2..67e7a35 100644
--- a/main.py
+++ b/main.py
@@ -1,11 +1,9 @@
1from .note_tools.commands import ( 1from .note_tools.commands import (
2 OrganizeNotesCommand, 2 NewNoteCommand,
3 NewNoteCommand 3 NewNoteForTomorrowCommand
4) 4)
5 5
6__all__= [ 6__all__= [
7 "NewNoteCommand" 7 "NewNoteCommand",
8 "NewNoteForTomorrowCommand"
8] 9]
9
10def plugin_loaded():
11 print("Note tools have been loaded.")