fun init()

in dsl/kotless/kotless-lang/src/main/kotlin/io/kotless/dsl/Application.kt [16:28]


    fun init() {
        if (isInitialized) return
        logger.debug("Started initialization of Lambda")

        RoutesStorage.scan()

        executeForObjects<LambdaInit> { it.init() }

        warmup()

        logger.debug("Lambda is initialized")
        isInitialized = true
    }