This commit is contained in:
snltty
2024-09-27 17:23:47 +08:00
parent 3815546b77
commit 40e857585d
43 changed files with 953 additions and 314 deletions

View File

@@ -2,4 +2,10 @@ import { sendWebsocketMsg } from './request'
export const getFlows = () => {
return sendWebsocketMsg('flowClient/GetFlows');
}
export const getMessengerFlows = () => {
return sendWebsocketMsg('flowClient/GetMessengerFlows');
}
export const getSForwardFlows = (data) => {
return sendWebsocketMsg('flowClient/GetSForwardFlows', data);
}