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