Commit f65a6c45 authored by Ali Saeed's avatar Ali Saeed

Create GrpcServerLauncher class which run spring app and grpc server

parent eb921f54
package Registration_Discovery;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class GrpcServerLauncher {
public static void start() {
SpringApplication.run(GrpcServerLauncher.class);
System.out.println("Starting..........");
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment