dev.krud.crudframework.test.TestCrudConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crud-framework-test Show documentation
Show all versions of crud-framework-test Show documentation
Spring-powered Crud Framework
The newest version!
package dev.krud.crudframework.test
import dev.krud.crudframework.crud.handler.CrudDao
import dev.krud.shapeshift.spring.ShapeShiftAutoConfiguration
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import org.springframework.context.annotation.Import
@Configuration
@Import(ShapeShiftAutoConfiguration::class)
class TestCrudConfiguration {
@Bean
fun testCrudDao(): CrudDao = TestCrudDaoImpl()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy