Mountain/Vine/Server/Notification/OutputChannelClear.rs
1use serde_json::Value;
2
3use super::Support::RelayToSky::RelayToSky;
4use crate::Vine::Server::MountainVinegRPCService::MountainVinegRPCService;
5
6pub async fn OutputChannelClear(Service:&MountainVinegRPCService, Parameter:&Value) {
7 RelayToSky(Service, "sky://output/clear", Parameter, "grpc", "[OutputChannel] clear");
8}