initial commit

This commit is contained in:
2025-05-05 18:46:03 +02:00
commit 34811fd981
6 changed files with 204 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.ddf.vodsystem;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class VodSystemApplication {
public static void main(String[] args) {
SpringApplication.run(VodSystemApplication.class, args);
}
}