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

__all__= [
  "NewNoteCommand",
  "OrganizeNotesCommand"
]

def plugin_loaded():
  print("NOTES HAS BEEN LOADED")