Newer
Older
tampopo-test / src / main / java / org / ntlab / tampopotest / TampopoTestApplication.java
package org.ntlab.tampopotest;

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

@SpringBootApplication
public class TampopoTestApplication {

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

}