ModernOSWeather/src/main.py

8 lines
156 B
Python
Raw Normal View History

from installer import install
import argparse
2024-09-09 10:01:44 +03:00
2024-10-09 17:13:41 +03:00
flags = argparse.ArgumentParser()
flags.add_argument("--install", "-i", action="store_true")
2024-10-09 17:13:41 +03:00
install(flags)