# # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # import sys from airbyte_cdk.entrypoint import launch from source_workable import SourceWorkable if __name__ == "__main__": source = SourceWorkable() launch(source, sys.argv[1:])