src/notes/models/__init__.py
author ymh <ymh.work@gmail.com>
Sat, 06 Jul 2019 01:00:53 +0200
changeset 204 0c78763b5f10
parent 142 56850f5c73f6
permissions -rw-r--r--
set version

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

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