Newer
Older
org.ntlab.hellorest / src / main / java / org / ntlab / hellorest / HellorestApplication.java
package org.ntlab.hellorest;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class HellorestApplication {

    public static void main(String[] args) {
        SpringApplication.run(HellorestApplication.class, args);
    }

}