baser du projet

This commit is contained in:
mepiphana2023
2024-04-22 11:14:29 +02:00
parent f5a6056126
commit 45d4473b33
10 changed files with 439 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package fr.eni.enchere;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class EnchereApplication {
public static void main(String[] args) {
SpringApplication.run(EnchereApplication.class, args);
}
}