A corporation manager and dashboard for EVE Online
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

15 строки
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