summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rw-r--r--main.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/main.py b/main.py
new file mode 100644
index 0000000..d388de5
--- /dev/null
+++ b/main.py
@@ -0,0 +1,13 @@
1from .note_tools.commands import (
2 OrganizeNotesCommand,
3 NewNoteCommand
4)
5
6__all__= [
7 "NewNoteCommand",
8 "OrganizeNotesCommand"
9]
10
11def plugin_loaded():
12 print("Note tools have been loaded.")
13 \ No newline at end of file