npm i electerm-syncimport { electermSync } from 'electerm-sync'
import axios from 'axios'
// type: 'github', 'gitee', 'custom', 'cloud'
// func: 'test', 'create', 'update', 'getOne'
// args: 函数参数数组
// token: 访问令牌或连接字符串
const result = await electermSync(
axios.create(),
'github',
'test',
[],
'your-github-token'
)npm run testMIT