0.1.3 • Published 6 months ago
ainiao v0.1.3
ainiao
一个纯粹的通知工具,还在开发中,请先收藏
使用框架
三行代码发送通知
//引入框架
import { send } from 'ainiao';
//构建要传递的消息体
let message={
text:"hello,ainiao",
}
//将消息发送进ID为12345的管道,over,收工!
send("12345", message).then((result) => {console.log("通知事件ID:", result.event_id);})