mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
14 lines
206 B
Python
Executable File
14 lines
206 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
__main__.py for Freqtrade
|
|
To launch Freqtrade as a module
|
|
|
|
> python -m freqtrade (with Python >= 3.8)
|
|
"""
|
|
|
|
from freqtrade import main
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main.main()
|