Mountain/Vine/Server/Notification/OutputChannelCreate.rs
1use serde_json::Value;
2
3use super::Support::RelayToSky::RelayToSky;
4use crate::Vine::Server::MountainVinegRPCService::MountainVinegRPCService;
5
6pub async fn OutputChannelCreate(Service:&MountainVinegRPCService, Parameter:&Value) {
7 RelayToSky(
8 Service,
9 "sky://output/create",
10 Parameter,
11 "output-verbose",
12 "[OutputChannel] create",
13 );
14}