From 6a80f48b1c3c0245bbf78bcd8ebf52e4ca2cbc0a Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Sat, 15 Jun 2024 11:01:13 -0400 Subject: Add project files --- main.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 main.py (limited to 'main.py') diff --git a/main.py b/main.py new file mode 100644 index 0000000..c108273 --- /dev/null +++ b/main.py @@ -0,0 +1,12 @@ +from .notes.commands import ( + OrganizeNotesCommand, + NewNoteCommand +) + +__all__= [ + "NewNoteCommand", + "OrganizeNotesCommand" +] + +def plugin_loaded(): + print("NOTES HAS BEEN LOADED") \ No newline at end of file -- cgit v1.1 From 38bb828fc32d9a1c61b20bcdc576c6d8566717d2 Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Sat, 15 Jun 2024 11:03:30 -0400 Subject: rename notes module to note_tools --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.py') diff --git a/main.py b/main.py index c108273..a01c84d 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,4 @@ -from .notes.commands import ( +from .note_tools.commands import ( OrganizeNotesCommand, NewNoteCommand ) @@ -9,4 +9,4 @@ __all__= [ ] def plugin_loaded(): - print("NOTES HAS BEEN LOADED") \ No newline at end of file + print("Note tools have been loaded.") \ No newline at end of file -- cgit v1.1 From 65dea987ae4217606d0a682ec49128a7a2c18c25 Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Sun, 16 Jun 2024 14:56:14 -0400 Subject: add new lines --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'main.py') diff --git a/main.py b/main.py index a01c84d..d388de5 100644 --- a/main.py +++ b/main.py @@ -9,4 +9,5 @@ __all__= [ ] def plugin_loaded(): - print("Note tools have been loaded.") \ No newline at end of file + print("Note tools have been loaded.") + \ No newline at end of file -- cgit v1.1