blob: d388de562a484895365622629f49348b85853a5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from .note_tools.commands import (
OrganizeNotesCommand,
NewNoteCommand
)
__all__= [
"NewNoteCommand",
"OrganizeNotesCommand"
]
def plugin_loaded():
print("Note tools have been loaded.")
|