summaryrefslogtreecommitdiff
path: root/main.py
blob: 7095cf221bd817dc7b8506dd61c2f9aa0b80328d (plain)
1
2
3
4
5
6
7
8
9
10
11
from .note_tools.commands import (
  OrganizeNotesCommand,
  NewNoteCommand
)

__all__= [
  "NewNoteCommand"
]

def plugin_loaded():
  print("Note tools have been loaded.")