23 lines
476 B
Java
23 lines
476 B
Java
|
|
package com.baeldung;
|
||
|
|
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* = RooApplication
|
||
|
|
*
|
||
|
|
* TODO Auto-generated class documentation
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
@SpringBootApplication
|
||
|
|
public class RooApplication {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* TODO Auto-generated method documentation
|
||
|
|
*
|
||
|
|
* @param args
|
||
|
|
*/
|
||
|
|
public static void main(String[] args) {
|
||
|
|
SpringApplication.run(RooApplication.class, args);
|
||
|
|
}
|
||
|
|
}
|