Newer
Older
NotifyInfo / notifyServer2 / src / main / java / me / notify / notifyServer / NotifyServerApplication.java
bdapp on 14 Oct 2019 327 bytes notify 2
package me.notify.notifyServer;

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

@SpringBootApplication
public class NotifyServerApplication {

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

}