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

2 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-10-07 01:52 +0000

1# 

2# Copyright (c) Microsoft Corporation. 

3# Licensed under the MIT License. 

4# 

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

6from mlos_bench.storage.sql.storage import SqlStorage 

7 

8__all__ = [ 

9 "SqlStorage", 

10]