21 lines
485 B
Java
21 lines
485 B
Java
|
|
package org.example;
|
||
|
|
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Hello world!
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
@SpringBootApplication
|
||
|
|
public class BigEventApplication
|
||
|
|
{
|
||
|
|
public static void main( String[] args )
|
||
|
|
{
|
||
|
|
// SpringApplication.run(BigEventApplication.class,args);
|
||
|
|
SpringApplication.run(BigEventApplication.class,args);
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|