Skip to content

Instantly share code, notes, and snippets.

@otoloye
Created April 12, 2018 01:46
Show Gist options
  • Save otoloye/dd575eda46aa7a564857f7e702f52d10 to your computer and use it in GitHub Desktop.
Save otoloye/dd575eda46aa7a564857f7e702f52d10 to your computer and use it in GitHub Desktop.
package com.otoloye.RestWithSpringBoot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class RestWithSpringBootApplication {
public static void main(String[] args) {
SpringApplication.run(RestWithSpringBootApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment