mirror of
https://github.com/snltty/linker.git
synced 2025-12-18 17:36:45 +08:00
7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
import { sendWebsocketMsg } from './request'
|
|
|
|
export const shareUpdate = (name, item) => {
|
|
return sendWebsocketMsg('share/update', {
|
|
name, item
|
|
});
|
|
} |