mirror of
https://github.com/snltty/linker.git
synced 2025-10-08 18:40:07 +08:00
11 lines
347 B
JavaScript
11 lines
347 B
JavaScript
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);
|
|
} |