Skip to content

Instantly share code, notes, and snippets.

@AlfredoCasado
Created February 19, 2019 22:32
Show Gist options
  • Save AlfredoCasado/6e77a10c8b5a443b444290aa29249554 to your computer and use it in GitHub Desktop.
Save AlfredoCasado/6e77a10c8b5a443b444290aa29249554 to your computer and use it in GitHub Desktop.
package boothello;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment