mirror of
https://github.com/openclaw/clawhub.git
synced 2026-08-14 00:47:57 +00:00
12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
import { v } from "convex/values";
|
|
import { internalAction } from "./_generated/server";
|
|
|
|
export async function checkDependencyRegistriesHandler(): Promise<null> {
|
|
return null;
|
|
}
|
|
|
|
export const checkDependencyRegistries = internalAction({
|
|
args: { versionId: v.id("skillVersions") },
|
|
handler: checkDependencyRegistriesHandler,
|
|
});
|