Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 22, 2019 23:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/64664581258a2a0851f4aa0a06594371 to your computer and use it in GitHub Desktop.
Save parzibyte/64664581258a2a0851f4aa0a06594371 to your computer and use it in GitHub Desktop.
package HolaMundoSpringBoot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class App {
public static void main(String[] args) {
SpringApplication.run(App.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment