diff options
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -1,11 +1,9 @@ | |||
1 | from .note_tools.commands import ( | 1 | from .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 | |||
10 | def plugin_loaded(): | ||
11 | print("Note tools have been loaded.") | ||