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