mirror of
https://github.com/kristoferssolo/2048.git
synced 2025-10-21 15:20:35 +00:00
15 lines
167 B
Python
Executable File
15 lines
167 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
|
|
from loguru import logger
|
|
from py2048 import Game
|
|
|
|
|
|
@logger.catch
|
|
def main() -> None:
|
|
Game().run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|