src/notes/models/__init__.py
author salimr <riwad.salim@yahoo.fr>
Tue, 09 Oct 2018 19:07:47 +0200
changeset 167 1f340f3597a8
parent 142 56850f5c73f6
permissions -rw-r--r--
Adapt css for CreateSession and Navbar components

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

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