forked from genewildish/Mainline
12 lines
184 B
Python
Executable File
12 lines
184 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
M A I N L I N E
|
|
Digital news consciousness stream.
|
|
Matrix aesthetic · THX-1138 hue.
|
|
"""
|
|
|
|
from engine.app import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|