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