chore: chop fastapi_generator into its module

Decoupled the large script with distinct files and purpose.

Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
Sébastien Han 2025-11-13 17:17:03 +01:00
parent 912ee24bdf
commit e79a03b697
No known key found for this signature in database
11 changed files with 2319 additions and 2206 deletions

View file

@ -0,0 +1,14 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
"""
Entry point for running the openapi_generator module as a package.
"""
from .main import main
if __name__ == "__main__":
main()