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.
 
 
 
 
 

15 lines
212 B

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