Added a few comments to server java files

This commit is contained in:
Sem van der Hoeven
2019-02-25 07:59:10 +01:00
parent bbaa0c4ada
commit 115402896a
2 changed files with 3 additions and 0 deletions

View File

@@ -3,9 +3,11 @@ package hello;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
//application to boot with spring
@SpringBootApplication
public class Application {
//run the application
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}