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