Skip to content

Instantly share code, notes, and snippets.

@edwin
Created May 4, 2020 15:31
Show Gist options
  • Save edwin/599500a8a9ff318510e3b52cabcc1b9a to your computer and use it in GitHub Desktop.
Save edwin/599500a8a9ff318510e3b52cabcc1b9a to your computer and use it in GitHub Desktop.
package com.redhat.edwin;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* <pre>
* com.redhat.edwin.Application
* </pre>
*
* @author Muhammad Edwin < edwin at redhat dot com >
* 04 Mei 2020 11:32
*/
@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