Esempio n. 1
0
def main():
    import gevent.monkey
    gevent.monkey.patch_all()
    from raiden.ui.cli import run
    # auto_envvar_prefix on a @click.command will cause all options to be
    # available also through environment variables prefixed with given prefix
    # http://click.pocoo.org/6/options/#values-from-environment-variables
    run(auto_envvar_prefix='RAIDEN')
Esempio n. 2
0
def main() -> None:
    import gevent.monkey

    gevent.monkey.patch_all()

    from raiden.network.transport.matrix.rtc.utils import setup_asyncio_event_loop

    setup_asyncio_event_loop()

    from raiden.ui.cli import run

    # auto_envvar_prefix on a @click.command will cause all options to be
    # available also through environment variables prefixed with given prefix
    # http://click.pocoo.org/6/options/#values-from-environment-variables
    run(auto_envvar_prefix="RAIDEN")  # pylint: disable=no-value-for-parameter
Esempio n. 3
0
# -*- coding: utf-8 -*-
from gevent import monkey
monkey.patch_all()
from raiden.ui.cli import run

if __name__ == '__main__':
    run()
Esempio n. 4
0
from gevent import monkey
monkey.patch_all()
from raiden.ui.cli import run


if __name__ == '__main__':
    # auto_envvar_prefix on a @click.command will cause all options to be
    # available also through environment variables prefixed with given prefix
    # http://click.pocoo.org/6/options/#values-from-environment-variables
    run(auto_envvar_prefix='RAIDEN')
Esempio n. 5
0
from gevent import monkey
monkey.patch_all()
from raiden.ui.cli import run

if __name__ == '__main__':
    # auto_envvar_prefix on a @click.command will cause all options to be
    # available also through environment variables prefixed with given prefix
    # http://click.pocoo.org/6/options/#values-from-environment-variables
    run(auto_envvar_prefix='RAIDEN')  # pylint: disable=no-value-for-parameter
Esempio n. 6
0
from gevent import monkey
monkey.patch_all()
from raiden.ui.cli import run

if __name__ == '__main__':
    # auto_envvar_prefix on a @click.command will cause all options to be
    # available also through environment variables prefixed with given prefix
    # http://click.pocoo.org/6/options/#values-from-environment-variables
    run(auto_envvar_prefix='RAIDEN')
Esempio n. 7
0
def main():
    import gevent.monkey
    gevent.monkey.patch_all()
    from raiden.ui.cli import run
    run()