Skip to content

Instantly share code, notes, and snippets.

@singh1114
Last active October 12, 2019 21:41
Show Gist options
  • Save singh1114/960d3f4147cfee37d6d5599fbf50c489 to your computer and use it in GitHub Desktop.
Save singh1114/960d3f4147cfee37d6d5599fbf50c489 to your computer and use it in GitHub Desktop.
package io.singh1114.springboottut;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class RestAPI {
public static void main(String[] args) {
SpringApplication.run(RestAPI.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment