Newer
Older
springboot-auth201 / src / main / java / com / heaerie / server / auth201 / Auth201Server / Auth201ServerApplication.java
@agalyaramadoss agalyaramadoss on 29 Nov 347 bytes first commit
package com.heaerie.server.auth201.Auth201Server;

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

@SpringBootApplication
public class Auth201ServerApplication {

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

}