diff options
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ | |||
1 | from .note_tools.commands import ( | ||
2 | OrganizeNotesCommand, | ||
3 | NewNoteCommand | ||
4 | ) | ||
5 | |||
6 | __all__= [ | ||
7 | "NewNoteCommand", | ||
8 | "OrganizeNotesCommand" | ||
9 | ] | ||
10 | |||
11 | def plugin_loaded(): | ||
12 | print("Note tools have been loaded.") | ||
13 | \ No newline at end of file | ||