typescript generator

This commit is contained in:
2026-02-09 06:52:33 +01:00
parent 68b7143fb2
commit 9b6f57cc2e
4 changed files with 26 additions and 0 deletions

0
Dockerfile Normal file
View File

22
pom.xml
View File

@@ -75,7 +75,29 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
</plugin> </plugin>
<plugin>
<groupId>cz.habarta.typescript-generator</groupId>
<artifactId>typescript-generator-maven-plugin</artifactId>
<version>3.2.1263</version>
<executions>
<execution>
<id>generate</id>
<goals>
<goal>generate</goal>
</goals>
<phase>process-classes</phase>
</execution>
</executions>
<configuration>
<jsonLibrary>jackson2</jsonLibrary>
<classes>
<class>com.example.video_downloader.dto.SaveNewVideoRequest</class>
</classes>
<outputKind>module</outputKind>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@@ -0,0 +1,4 @@
package com.example.video_downloader.services;
public class ProccessService {
}

BIN
yt-dlp Normal file

Binary file not shown.