Guest User

Untitled

a guest
Apr 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. @SpringBootApplication
  2. public class BotApakahApplication extends SpringBootServletInitializer {
  3.  
  4. @Override
  5. protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
  6. return builder.sources(BotApakahApplication.class);
  7. }
  8.  
  9. public static void main(String[] args) {
  10. SpringApplication.run(BotApakahApplication.class, args);
  11. }
  12.  
  13. }
Add Comment
Please, Sign In to add comment