A corporation manager and dashboard for EVE Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

27 lines
450 B

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