Skip to content

Instantly share code, notes, and snippets.

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 AntonioMontanha/b10ce028bffd6ffd82f3c61a660ae40b to your computer and use it in GitHub Desktop.
Save AntonioMontanha/b10ce028bffd6ffd82f3c61a660ae40b to your computer and use it in GitHub Desktop.
package com.montanha.gerenciador;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@SpringBootApplication
@Configuration
public class GerenciadorViagensMontanhaApplication {
public static void main(String[] args) {
SpringApplication.run(GerenciadorViagensMontanhaApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment