daemon: Start restructuring config reloading

This commit is contained in:
Vicki Pfau 2024-05-15 19:11:17 -07:00 committed by Jeremy Whiting
parent f30c54c907
commit 23267c65e0
3 changed files with 55 additions and 39 deletions

12
src/daemon/config.rs Normal file
View file

@ -0,0 +1,12 @@
/*
* Copyright © 2023 Collabora Ltd.
* Copyright © 2024 Valve Software
*
* SPDX-License-Identifier: MIT
*/
use anyhow::Result;
pub(in crate::daemon) async fn read_config() -> Result<()> {
todo!();
}