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

3 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 storage backends for OS Autotune.""" 

6 

7from mlos_bench.storage.base_storage import Storage 

8from mlos_bench.storage.storage_factory import from_config 

9 

10__all__ = [ 

11 "Storage", 

12 "from_config", 

13]