15 lines
189 B
Python
15 lines
189 B
Python
from .notes_actions import (
|
|
create_note,
|
|
delete_note,
|
|
list_notes,
|
|
update_note,
|
|
)
|
|
|
|
|
|
__all__ = [
|
|
"create_note",
|
|
"delete_note",
|
|
"list_notes",
|
|
"update_note",
|
|
]
|