watch.Main.java Source code

Java tutorial

Introduction

Here is the source code for watch.Main.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package watch;

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

/**
 *
 * @author hoshito
 */
@SpringBootApplication
public class Main {

    public static void main(String[] args) throws Exception {
        new SpringApplication(Main.class).run();
    }

}