convert Resolver into a Service.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-07-16 22:00:54 +00:00
parent 2fd6f6b0ff
commit f465d77ad3
11 changed files with 381 additions and 409 deletions

View file

@ -37,7 +37,7 @@ pub(crate) trait Service: Any + Send + Sync {
pub(crate) struct Args<'a> {
pub(crate) server: &'a Arc<Server>,
pub(crate) db: &'a Arc<Database>,
pub(crate) _service: &'a Map,
pub(crate) service: &'a Map,
}
pub(crate) type Map = BTreeMap<String, MapVal>;