13 lines
247 B
Python
13 lines
247 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
import sys
|
|
|
|
from airbyte_cdk.entrypoint import launch
|
|
from source_pokeapi import SourcePokeapi
|
|
|
|
if __name__ == "__main__":
|
|
source = SourcePokeapi()
|
|
launch(source, sys.argv[1:])
|