src/notes/models/__init__.py
author ymh <ymh.work@gmail.com>
Thu, 06 Dec 2018 01:33:54 +0100
changeset 196 ef9cde55d9f1
parent 142 56850f5c73f6
permissions -rw-r--r--
update venv

"""
Models for notes
"""
from .auth import User, UserProfile, GroupProfile
from .core import Note, Session

__all__ = ["User", "UserProfile", "GroupProfile", "Note", "Session"]