You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
449 B
18 lines
449 B
|
10 months ago
|
package kr.re.etri.autoflow;
|
||
|
|
|
||
|
|
import lombok.extern.slf4j.Slf4j;
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
|
||
|
|
|
||
|
|
@SpringBootApplication
|
||
|
|
@EnableJpaAuditing
|
||
|
|
@Slf4j
|
||
|
|
public class AutoFlowApplication {
|
||
|
|
|
||
|
|
public static void main(String[] args) {
|
||
|
|
SpringApplication.run(AutoFlowApplication.class, args);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|