chore: update package version to 0.0.25 and dependencies in package.json; refactor Jimeng class to extend JimengService

This commit is contained in:
2026-03-03 01:40:28 +08:00
parent 0e2a6c7f7d
commit 076fcbd55a
2 changed files with 18 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
import { Core, CoreOpts } from "./core.ts";
import { JimengService, JimengOptions } from "./core.ts";
export class Jimen extends Core {
constructor(opts: CoreOpts = {}) {
export class Jimeng extends JimengService {
constructor(opts: JimengOptions) {
super(opts);
}
}