Mountain/Vine/Server/Notification/UnregisterTaskProvider.rs
1//! `task` provider-unregistration atom.
2
3use serde_json::Value;
4
5use super::Support::UnregisterByHandle::UnregisterByHandle;
6use crate::Vine::Server::MountainVinegRPCService::MountainVinegRPCService;
7
8pub async fn UnregisterTaskProvider(Service:&MountainVinegRPCService, Parameter:&Value) {
9 UnregisterByHandle(Service, Parameter, "task");
10}