blob: 960fa52e61c7d414399c73642948f3f24467551c [file] [log] [blame]
Sapan Bhatiaf7662b02017-04-27 01:03:04 +02001# The hardcoded entries cannot be inferred from the models. To get rid of in the long run
2#
3
Sapan Bhatia4e80a262017-05-19 23:10:51 +02004from .xosbase import XOSBase,XOSBaseManager,XOSBaseDeletionManager,PlModelMixIn,ModelLink
Sapan Bhatia504cc972017-04-27 01:56:28 +02005from .contenttype import ContentType
Sapan Bhatiaf7662b02017-04-27 01:03:04 +02006from .site import Site
Sapan Bhatiaf7662b02017-04-27 01:03:04 +02007from .user import User
Sapan Bhatiaf7662b02017-04-27 01:03:04 +02008
9{% for m in proto.messages -%}
Sapan Bhatiad022aeb2017-06-07 15:49:55 +020010{% if not m.options.skip_init -%}
Sapan Bhatiaf7662b02017-04-27 01:03:04 +020011from .{{ m.name | lower }} import {{ m.name }}
Sapan Bhatia170ae272017-05-30 19:01:09 +020012{% endif -%}
Sapan Bhatiaf7662b02017-04-27 01:03:04 +020013{% endfor -%}