mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-14 15:00:16 +02:00
19 lines
388 B
Python
19 lines
388 B
Python
import os
|
|
from esi.clients import EsiClientProvider
|
|
|
|
from allianceauth import __version__
|
|
|
|
SWAGGER_SPEC = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'swagger.json')
|
|
|
|
"""
|
|
Swagger spec operations:
|
|
get_killmails_killmail_id_killmail_hash
|
|
get_universe_types_type_id
|
|
"""
|
|
|
|
|
|
esi = EsiClientProvider(
|
|
spec_file=SWAGGER_SPEC,
|
|
app_info_text=("allianceauth v" + __version__)
|
|
)
|