Files
ccxt_with_mt5/ccxt/async_support/gateio.py
lz_db 0fab423a18 add
2025-11-16 12:31:03 +08:00

18 lines
498 B
Python

# -*- coding: utf-8 -*-
# PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
# https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
from ccxt.async_support.gate import gate
from ccxt.abstract.gateio import ImplicitAPI
from ccxt.base.types import Any
class gateio(gate, ImplicitAPI):
def describe(self) -> Any:
return self.deep_extend(super(gateio, self).describe(), {
'id': 'gateio',
'alias': True,
})