9 lines
224 B
Java
9 lines
224 B
Java
|
|
package com.klp.ems.config;
|
||
|
|
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
||
|
|
|
||
|
|
@Configuration
|
||
|
|
@EnableScheduling
|
||
|
|
public class SchedulingConfig {
|
||
|
|
}
|