12 lines
253 B
Python
12 lines
253 B
Python
#!/usr/bin/env python3
|
|
import asyncio
|
|
from main import run_multiple_bots
|
|
|
|
CONFIG_FILES = [
|
|
'config_station1.yaml',
|
|
'config_station2.yaml',
|
|
'config_station3.yaml'
|
|
]
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(run_multiple_bots(CONFIG_FILES)) |