wip: Refactoring the service

-> Made new skeleton
-> Added service manager
-> Manager Refactored
-> Cleanup
-> Add gid struct
-> remove synchronizer
-> Added backup into manager
-> Fix the configure signal not send
-> Fixes around backup and sync

wip: Moved over the config into the service manager
This commit is contained in:
BluJ
2023-01-31 15:36:25 -07:00
committed by Aiden McClelland
parent bada88157e
commit 93c751f6eb
17 changed files with 1611 additions and 1143 deletions

View File

@@ -96,9 +96,9 @@ impl PackageProcedure {
}
Some(man) => (
if matches!(name, ProcedureName::Main) {
man.new_main_gid()
man.gid.new_main_gid()
} else {
man.new_gid()
man.gid.new_gid()
},
man.rpc_client(),
),