Skip to content

Instantly share code, notes, and snippets.

@linuxmaniaco
Created June 22, 2025 03:34
Show Gist options
  • Save linuxmaniaco/f8c2f903f77c0d3d0aa356a6073924fa to your computer and use it in GitHub Desktop.
Save linuxmaniaco/f8c2f903f77c0d3d0aa356a6073924fa to your computer and use it in GitHub Desktop.
Padrões GoF
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