16 lines
374 B
Java
16 lines
374 B
Java
package com.cleverthis.authservice;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* Auth-Service starter.
|
|
*/
|
|
@SpringBootApplication
|
|
public class AuthServiceApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(AuthServiceApplication.class, args);
|
|
}
|
|
}
|