src/notes/models/__init__.py
author salimr <riwad.salim@yahoo.fr>
Mon, 08 Oct 2018 03:30:54 +0200
changeset 160 183b128a4189
parent 142 56850f5c73f6
permissions -rw-r--r--
Change sessions list disposition and add sessions number

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

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