chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:44:08 +08:00
commit 983960e2dd
1244 changed files with 281996 additions and 0 deletions
@@ -0,0 +1,14 @@
import { LogHelper } from '@/helpers/log-helper'
import generateClientInterfaceToken from './generate-client-interface-token'
/**
* Execute the generating Leon client interface token script
*/
;(async () => {
try {
await generateClientInterfaceToken()
} catch (e) {
LogHelper.error(`Failed to generate the Leon client interface token: ${e}`)
}
})()