Coverage for mlos_bench/mlos_bench/storage/sql/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.5.1, created at 2024-05-05 00:36 +0000

1# 

2# Copyright (c) Microsoft Corporation. 

3# Licensed under the MIT License. 

4# 

5""" 

6Interfaces to the SQL-based storage backends for OS Autotune. 

7""" 

8from mlos_bench.storage.sql.storage import SqlStorage 

9 

10__all__ = [ 

11 'SqlStorage', 

12]