12 lines
194 B
Python
12 lines
194 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
import sys
|
|
|
|
from destination_sqlite import DestinationSqlite
|
|
|
|
if __name__ == "__main__":
|
|
DestinationSqlite().run(sys.argv[1:])
|