src/notes/models/__init__.py
author ymh <ymh.work@gmail.com>
Wed, 28 Nov 2018 18:33:20 +0100
changeset 182 2dbb6ddbf645
parent 142 56850f5c73f6
permissions -rw-r--r--
update deploy script

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

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