src/notes/models/__init__.py
changeset 24 3b3999550508
child 142 56850f5c73f6
equal deleted inserted replaced
23:4c3ae065f22c 24:3b3999550508
       
     1 """
       
     2 Models for notes
       
     3 """
       
     4 from .auth import User, UserProfile, GroupProfile
       
     5 from .core import Note, Session
       
     6 from .category import Protocol, Category
       
     7 
       
     8 __all__ = ["User", "UserProfile", "GroupProfile", "Note", "Session", "Protocol", "Category"]