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.
 
 
 
 
 

21 lines
330 B

  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