Advertisement
Guest User

Untitled

a guest
Mar 12th, 2017
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. package defaultpackage;
  2.  
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5.  
  6. /**
  7. * Created by zales on 01.03.2017.
  8. */
  9. @SpringBootApplication
  10. public class NewApiApp {
  11. public static void main(String[] args) {
  12. SpringApplication.run(NewApiApp.class, args);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement