mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
15 lines
363 B
TypeScript
15 lines
363 B
TypeScript
import { consola } from 'consola';
|
|
|
|
import syncAgentIndex from './syncAgentIndex';
|
|
import syncPluginIndex from './syncPluginIndex';
|
|
import syncProviderIndex from './syncProviderIndex';
|
|
|
|
const runSync = async () => {
|
|
consola.start('Start sync readme workflow...');
|
|
await syncProviderIndex();
|
|
await syncAgentIndex();
|
|
await syncPluginIndex();
|
|
};
|
|
|
|
runSync();
|