/
mtngaz
/
ProductAPI
Обзор
Документация
Войти
/
mtngaz
/
ProductAPI
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/org/example/productapi/ProductApiApplication.java
23 строки
583 B
newttena
ProductAPI
04 июн 2024, 13:21
04 июн 2024, 13:21
e05d4a6
Код
Авторство
О чём код?
/** * The main class for the Product API application. */ package org.example.productapi; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; /** * The main entry point for the Product API application. */ @SpringBootApplication public class ProductApiApplication { /** * The main method to start the Product API application. * @param args The command line arguments. */ public static void main(String[] args) { SpringApplication.run(ProductApiApplication.class, args); } }