# ------------------------------------------------------------------------
# RF-DETR
# Copyright (c) 2025 Roboflow. All Rights Reserved.
# Licensed under the Apache License, Version 2.0 [see LICENSE for details]
# ------------------------------------------------------------------------
"""Entrypoint for ``python -m rfdetr``."""

from rfdetr.cli import main

if __name__ == "__main__":
    main()
