forked from sczupryn/DemoApp
12 lines
296 B
Java
12 lines
296 B
Java
package org.example;
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
public class Main {
|
|
public static void main(String[] args) {
|
|
System.out.println("Start application");
|
|
System.out.println("Start application 2");
|
|
SpringApplication.run(Main.class, args);
|
|
}
|
|
} |