| #!/usr/bin/env python3 | |
| # Copyright 2019 The Fuchsia Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| """The util module stores misc. | |
| utils for environment variables and logging. | |
| Utils has a series of largely decoupled components that are used by all modules. | |
| They are organised in this module to reduce duplication across the code base. | |
| """ | |
| import server.util.env | |
| import server.util.url | |
| import server.util.logging |