13 lines
299 B
Java
13 lines
299 B
Java
package com.peanut.config;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
@EnableAsync
|
|
@Configuration
|
|
@EnableScheduling
|
|
public class ScheduledConfig {
|
|
|
|
}
|