src/notes/models/__init__.py
author ymh <ymh.work@gmail.com>
Mon, 03 Sep 2018 11:57:58 +0200
changeset 153 de8d18c8251d
parent 142 56850f5c73f6
permissions -rw-r--r--
Remove reference to bootstrap-sass after migration to bootstrap 4

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

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