Created
February 18, 2022 09:02
-
-
Save maneeshaindrachapa/f0d9fc4cb4c06216abc94a0d8885731c to your computer and use it in GitHub Desktop.
CaliforniaApplication Start
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.explore.california; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
@SpringBootApplication | |
public class CaliforniaApplication { | |
public static void main(String[] args) { | |
SpringApplication.run(CaliforniaApplication.class, args); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment