Skip to content

Commit

Permalink
Fix handleInitialize import
Browse files Browse the repository at this point in the history
  • Loading branch information
d-gubert committed Dec 27, 2023
1 parent 18cc8d2 commit 4a7a913
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
File renamed without changes.
18 changes: 9 additions & 9 deletions deno-runtime/handlers/app/handler.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { Defined, JsonRpcError } from 'jsonrpc-lite';

import handleConstructApp from './construct.ts';
import handleInitialize from "./handleInitialize.ts";
import handleGetStatus from "./handleGetStatus.ts";
import handleSetStatus from "./handleSetStatus.ts";
import handleOnEnable from "./handleOnEnable.ts";
import handleOnInstall from "./handleOnInstall.ts";
import handleOnDisable from "./handleOnDisable.ts";
import handleOnUninstall from "./handleOnUninstall.ts";
import handleOnPreSettingUpdate from "./handleOnPreSettingUpdate.ts";
import handleOnSettingUpdated from "./handleOnSettingUpdated.ts";
import handleInitialize from './handleInitialize.ts';
import handleGetStatus from './handleGetStatus.ts';
import handleSetStatus from './handleSetStatus.ts';
import handleOnEnable from './handleOnEnable.ts';
import handleOnInstall from './handleOnInstall.ts';
import handleOnDisable from './handleOnDisable.ts';
import handleOnUninstall from './handleOnUninstall.ts';
import handleOnPreSettingUpdate from './handleOnPreSettingUpdate.ts';
import handleOnSettingUpdated from './handleOnSettingUpdated.ts';

export default async function handleApp(method: string, params: unknown): Promise<Defined | JsonRpcError> {
const [, appMethod] = method.split(':');
Expand Down

0 comments on commit 4a7a913

Please sign in to comment.