]>
Commit | Line | Data |
---|---|---|
92b11a10 SW |
1 | # paperdoorknob: Print glowfic |
2 | # | |
3 | # This program is free software: you can redistribute it and/or modify it | |
4 | # under the terms of the GNU General Public License as published by the | |
5 | # Free Software Foundation, version 3. | |
6 | ||
7 | ||
8 | from argparse import ArgumentParser | |
9 | ||
10 | ||
11 | def command_line_parser() -> ArgumentParser: | |
12 | parser = ArgumentParser(prog='paperdoorknob', description='Print glowfic') | |
13 | return parser | |
14 | ||
15 | ||
16 | def main() -> None: | |
17 | command_line_parser().parse_args() | |
18 | ||
19 | ||
20 | if __name__ == '__main__': | |
21 | main() |