Compare commits
11 Commits
18622efff1
...
8c4c1231c8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8c4c1231c8 | ||
|
|
37bbbfd6cf | ||
|
|
b4b1a7ab27 | ||
|
|
200e80b1bf | ||
|
|
cb7be19ae6 | ||
|
|
d7caa280a6 | ||
|
|
d78f481539 | ||
|
|
0e54a4a856 | ||
|
|
191b5d11f4 | ||
|
|
e5d5c3bd7f | ||
|
|
7b0a7b963a |
@@ -0,0 +1 @@
|
||||
This is the documentation of the project.
|
||||
@@ -3,12 +3,16 @@ package com.example.demo;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@SpringBootApplication
|
||||
public class DemoApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.printl("Start application");
|
||||
System.out.println("Start application from gitea");
|
||||
System.out.println(new Date());
|
||||
SpringApplication.run(DemoApplication.class, args);
|
||||
System.out.println("End application");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
4
src/main/java/com/example/demo/domain/UserEntity.java
Normal file
4
src/main/java/com/example/demo/domain/UserEntity.java
Normal file
@@ -0,0 +1,4 @@
|
||||
package com.example.demo.domain;
|
||||
|
||||
public class UserEntity {
|
||||
}
|
||||
4
src/main/java/controller/UserController.java
Normal file
4
src/main/java/controller/UserController.java
Normal file
@@ -0,0 +1,4 @@
|
||||
package controller;
|
||||
|
||||
public class UserController {
|
||||
}
|
||||
Reference in New Issue
Block a user