Commit f0930f9b3c4ef330f6c4aa59100c27dfd09d31a4

Authored by Geoffrey PREUD'HOMME
1 parent 09db76a6

Eh, j'avais oublié le principal !

Showing 1 changed file with 14 additions and 0 deletions   Show diff stats
src/main/java/etunicorn/Application.java 0 → 100644
... ... @@ -0,0 +1,14 @@
  1 +package etunicorn;
  2 +
  3 +import org.springframework.boot.SpringApplication;
  4 +import org.springframework.boot.autoconfigure.SpringBootApplication;
  5 +
  6 +/**
  7 + * Created by geoffrey on 28/01/17.
  8 + */
  9 +@SpringBootApplication
  10 +public class Application {
  11 + public static void main(String[] args) {
  12 + SpringApplication.run(Application.class, args);
  13 + }
  14 +}
... ...