A corporation manager and dashboard for EVE Online
25개 이상의 토픽을 선택하실 수 없습니다. 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