Created
April 5, 2020 19:01
-
-
Save john-nash-rs/9f65d35306aed08f195ba01c02e4d46b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.nulpointerexception.cabdetailsgraphQLdemo; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
@SpringBootApplication | |
public class CabDetailsGraphQlDemoApplication { | |
public static void main(String[] args) { | |
System.out.println("****************** GraphQL starts **************************"); | |
SpringApplication.run(CabDetailsGraphQlDemoApplication.class, args); | |
System.out.println("****************** GraphQL ends **************************"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment