summaryrefslogtreecommitdiff
path: root/microservices/01-oauth2-server/src/main/java/com/example/oauth2server/Oauth2ServerApplication.java
blob: 68ee05071df705f3ac68914639a81cdf74b46faf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.example.oauth2server;

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

@SpringBootApplication
public class Oauth2ServerApplication {

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

}