npm i electerm-syncimport { electermSync } from 'electerm-sync'
import axios from 'axios'
// type: 'github', 'gitee', 'custom', 'cloud'
// func: 'test', 'create', 'update', 'getOne'
// args: array of arguments for the function
// token: access token or connection string
const result = await electermSync(
axios.create(),
'github',
'test',
[],
'your-github-token'
)npm run testMIT