src/notes/models/__init__.py
author ymh <ymh.work@gmail.com>
Wed, 05 Dec 2018 23:52:25 +0100
changeset 194 d19ba6045e82
parent 142 56850f5c73f6
permissions -rw-r--r--
Optimize code a little bit. Get rid of very expensive and useless clone operation

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

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