Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Vine/Server/Notification/
ProgressUpdate.rs

1#![allow(non_snake_case)]
2use serde_json::Value;
3
4use super::Support::RelayToSky::RelayToSky;
5use crate::Vine::Server::MountainVinegRPCService::MountainVinegRPCService;
6pub async fn ProgressUpdate(Service:&MountainVinegRPCService, Parameter:&Value) {
7	RelayToSky(
8		Service,
9		"sky://notification/progress-update",
10		Parameter,
11		"grpc",
12		"[Progress] update",
13	);
14}