15 lines
293 B
Python
15 lines
293 B
Python
import argparse
|
|
|
|
from . import ItSyndikatBot
|
|
from .config import Config
|
|
|
|
parser = argparse.ArgumentParser(description="IT-Syndikat matrix bot")
|
|
parser.add_argument(
|
|
"-c",
|
|
"--config",
|
|
help="path to the config file",
|
|
)
|
|
|
|
args = parser.parse_args()
|
|
|
|
ItSyndikatBot(Config(args.config))
|