__init__.py 234 B

12345678910
  1. # -*- coding: utf-8 -*-
  2. import os
  3. import sys
  4. cur_dir = os.path.abspath(os.path.join( os.path.dirname(__file__) ) )
  5. ext_path = os.path.join(cur_dir, 'ext_libs')
  6. sys.path.append(ext_path)
  7. from . import controllers
  8. from . import models