summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorzberwaldt <17715430+zberwaldt@users.noreply.github.com>2024-06-16 14:59:46 -0400
committerGitHub <noreply@github.com>2024-06-16 14:59:46 -0400
commit9a2f8dbcb02f3a2c084f9bb92c765028ba7b2ef0 (patch)
tree395b59397e0b3769c9f9955e6e53244754b26973 /main.py
parent09923f0a79d6c567c5cda77c756a122a8651a246 (diff)
parent65dea987ae4217606d0a682ec49128a7a2c18c25 (diff)
Merge pull request #1 from zberwaldt/develop
Version 1
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