13 lines
195 B
Python
13 lines
195 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:])
|