initial check-in for project to implement a minimal ActivityPub bot in Java/Spring

This commit is contained in:
Yvan 2025-01-23 17:27:34 +00:00
parent 54508a2890
commit 516652c11c
14 changed files with 560 additions and 0 deletions

8
Java/Spring/App.java Normal file
View file

@ -0,0 +1,8 @@
@ActivityPubController
class App{
@RequestMapping("/")
pub String hello() {
return "Hello World";
}
}