diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2024-06-15 11:01:13 -0400 |
---|---|---|
committer | Zach Berwaldt <zberwaldt@tutamail.com> | 2024-06-15 11:01:13 -0400 |
commit | 6a80f48b1c3c0245bbf78bcd8ebf52e4ca2cbc0a (patch) | |
tree | 82182a9deacef1e9e077126ee1244a7e1621ff86 /main.py | |
parent | 09923f0a79d6c567c5cda77c756a122a8651a246 (diff) |
Add project files
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ | |||
1 | from .notes.commands import ( | ||
2 | OrganizeNotesCommand, | ||
3 | NewNoteCommand | ||
4 | ) | ||
5 | |||
6 | __all__= [ | ||
7 | "NewNoteCommand", | ||
8 | "OrganizeNotesCommand" | ||
9 | ] | ||
10 | |||
11 | def plugin_loaded(): | ||
12 | print("NOTES HAS BEEN LOADED") \ No newline at end of file | ||