/* * This source code is released into the public domain. */ module; #include export module nihil.config:read; namespace nihil::config { /* * Load the configuration from a file. Throws config::error on failure. */ export auto read_from(std::filesystem::path const &filename) -> void; } // namespace nihil::config