blob: a465e6ba6e70f2dcc29333cbb08a1732feaed6b6 [file] [log] [blame]
package domainapp.modules.hello;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import domainapp.modules.hello.dom.hwo.HelloWorldObject;
@Configuration
@Import({})
@ComponentScan
@EnableJpaRepositories
@EntityScan(
basePackageClasses = {
HelloWorldModule.class
})
public class HelloWorldModule {
}