feat(kol): admin-web API client + router entries for KOL

This commit is contained in:
2026-04-17 13:51:39 +08:00
parent a6ded27c1d
commit 9cf9fac109
8 changed files with 197 additions and 0 deletions
@@ -0,0 +1,5 @@
import { nanoid } from "nanoid";
export function newVariableId(): string {
return `var_${nanoid(8)}`;
}