Advertisement
AllyssonAyslan

FoosballApplication.java

Sep 25th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. package com.foosball;
  2.  
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5.  
  6.  
  7. @SpringBootApplication
  8. public class FoosballApplication {
  9.  
  10.     public static void main(String[] args) {
  11.         SpringApplication.run(FoosballApplication.class, args);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement