1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2025-08-06 17:40:59 +00:00

431 errors left

This commit is contained in:
Timo Kösters 2022-10-05 09:34:25 +02:00
parent d6b32b6ffe
commit 79e7115b62
No known key found for this signature in database
GPG key ID: 356E705610F626D5
32 changed files with 640 additions and 973 deletions

View file

@ -28,7 +28,7 @@ enum ServicesEnum {
Rocksdb(Services<KeyValueDatabase>)
}
pub fn services() -> Services<KeyValueDatabase> {
SERVICES.read().unwrap()
pub fn services<'a>() -> &'a Services<KeyValueDatabase> {
&SERVICES.read().unwrap()
}