From 3b8e72a8ff6a408573f872de22753ac2247d6e3c Mon Sep 17 00:00:00 2001 From: Yusuke Wada Date: Sat, 20 Jul 2024 18:59:55 +0900 Subject: [PATCH] chore(factory): remove `@experimental` from `createApp` (#3164) --- src/helper/factory/index.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/helper/factory/index.ts b/src/helper/factory/index.ts index 041b6e24..c5fe7a86 100644 --- a/src/helper/factory/index.ts +++ b/src/helper/factory/index.ts @@ -217,10 +217,6 @@ export class Factory { this.initApp = init?.initApp } - /** - * @experimental - * `createApp` is an experimental feature. - */ createApp = (): Hono => { const app = new Hono() if (this.initApp) {