All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vrap.codegen.languages.bruno.model.BrunoModelModule.kt Maven / Gradle / Ivy

Go to download

RAML API client code generators based on the REST Modeling Framework. https://github.com/vrapio/rest-modeling-framework

There is a newer version: 1.0.0-20241120142200
Show newest version
package io.vrap.codegen.languages.bruno.model

import io.vrap.rmf.codegen.di.RamlGeneratorModule
import io.vrap.rmf.codegen.di.Module
import io.vrap.rmf.codegen.rendering.CodeGenerator
import io.vrap.rmf.codegen.rendering.FileGenerator

object BrunoModelModule : Module {
    override fun configure(generatorModule: RamlGeneratorModule) = setOf(
            FileGenerator(
                    setOf(
                            BrunoModuleRenderer(generatorModule.provideRamlModel(), generatorModule.vrapTypeProvider()),
                            BrunoMethodRenderer(generatorModule.provideRamlModel(), generatorModule.vrapTypeProvider()),
                            BrunoActionRenderer(generatorModule.provideRamlModel(), generatorModule.vrapTypeProvider())
                    )
            )
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy