Newer
Older
NotifyInfo / NotifyServer3 / src / main / java / me / notify / notifyserver3 / NotifyServer3Application.java
bello on 29 Oct 2019 330 bytes notify3
package me.notify.notifyserver3;

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

@SpringBootApplication
public class NotifyServer3Application {

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

}