now?
All checks were successful
Deploy Frontend / deploy (push) Successful in 4m43s

This commit is contained in:
Lee
2024-10-02 14:08:57 +01:00
parent 130b9bfdec
commit ec694e97fa
3 changed files with 21 additions and 1 deletions

10
Backend/pom.xml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cc.fascinated.ssr</groupId>
<artifactId>Backend</artifactId>
<version>1.0-SNAPSHOT</version>
</project>

View File

@ -0,0 +1,10 @@
package cc.fascinated.ssr;
/**
* @author Fascinated (fascinated7)
*/
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}