Created
June 22, 2025 03:34
-
-
Save linuxmaniaco/f8c2f903f77c0d3d0aa356a6073924fa to your computer and use it in GitHub Desktop.
Padrões GoF
This file contains hidden or 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.acme.cars; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
@SpringBootApplication | |
public class CarsApplication { | |
public static void main(String[] args) { | |
SpringApplication.run(CarsApplication.class, args); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment