mirror of
https://github.com/davegallant/rfd.git
synced 2025-08-07 00:58:14 +00:00
13 lines
172 B
Python
13 lines
172 B
Python
#!/usr/bin/env python
|
|
"""The main entry point. Invoke as `rfd' or `python -m rfd'.
|
|
"""
|
|
from .cli import cli
|
|
|
|
|
|
def main():
|
|
cli()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|