mirror of
https://github.com/kunkunsh/kunkun-ext-rag.git
synced 2025-04-04 02:16:41 +00:00
6 lines
182 B
TypeScript
6 lines
182 B
TypeScript
import { expose } from '@kunkun/api/runtime/deno';
|
|
import type { DenoAPI } from '../src/api.types.ts';
|
|
import { Bucket } from './bucket.ts';
|
|
|
|
expose(new Bucket() satisfies DenoAPI);
|