Coverage for src/pydal2sql_core/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-07-31 19:47 +0200

1""" 

2Expose methods for the library. 

3""" 

4 

5# SPDX-FileCopyrightText: 2023-present Robin van der Noord <robinvandernoord@gmail.com> 

6# 

7# SPDX-License-Identifier: MIT 

8 

9from .core import generate_sql 

10from .helpers import get_typing_args 

11from .types import SUPPORTED_DATABASE_TYPES as _SUPPORTED_DATABASE_TYPES 

12 

13SUPPORTED_DATABASE_TYPES = get_typing_args(_SUPPORTED_DATABASE_TYPES) 

14 

15__all__ = [ 

16 "generate_sql", 

17 "SUPPORTED_DATABASE_TYPES", 

18]