diff options
author | zberwaldt <17715430+zberwaldt@users.noreply.github.com> | 2024-06-16 14:59:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-16 14:59:46 -0400 |
commit | 9a2f8dbcb02f3a2c084f9bb92c765028ba7b2ef0 (patch) | |
tree | 395b59397e0b3769c9f9955e6e53244754b26973 /main.py | |
parent | 09923f0a79d6c567c5cda77c756a122a8651a246 (diff) | |
parent | 65dea987ae4217606d0a682ec49128a7a2c18c25 (diff) |
Merge pull request #1 from zberwaldt/develop
Version 1
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 | ||