8 lines
126 B
Python
8 lines
126 B
Python
#!/usr/bin/env python3
|
|
|
|
# TODO implement cli start function
|
|
from firegex.cli import run
|
|
|
|
if __name__ == "__main__":
|
|
run()
|