mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-12 09:28:31 +02:00
* run format * rename cli.py to main.py * rename jrnl.py to controller.py * move journal class files into journals dir * rename start -> run in controller.py
9 lines
183 B
Python
9 lines
183 B
Python
# Copyright © 2012-2023 jrnl contributors
|
|
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
import sys
|
|
|
|
from jrnl.main import run
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(run())
|