0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 02:27:49 +01:00

chore(factory): remove @experimental from createApp (#3164)

This commit is contained in:
Yusuke Wada 2024-07-20 18:59:55 +09:00 committed by GitHub
parent 66fc63d134
commit 3b8e72a8ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -217,10 +217,6 @@ export class Factory<E extends Env = any, P extends string = any> {
this.initApp = init?.initApp
}
/**
* @experimental
* `createApp` is an experimental feature.
*/
createApp = (): Hono<E> => {
const app = new Hono<E>()
if (this.initApp) {