A corporation manager and dashboard for EVE Online
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. from .clock import Clock
  3. from .image import ImageServer
  4. __all__ = ["EVE"]
  5. class EVE:
  6. def __init__(self):
  7. self._clock = Clock()
  8. self._image = ImageServer()
  9. @property
  10. def clock(self):
  11. return self._clock
  12. @property
  13. def image(self):
  14. return self._image