Testpage hinzugefügt

git 2025-06-04 20:51:27 +02:00
parent f10f28ed06
commit 426470a4ea

22
Testpage.md Normal file

@ -0,0 +1,22 @@
# Testseite um Dinge auszuprobieren
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```
```plantuml
@startuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
@enduml
```
```go
func main() {
fmt.Println("Hallo")
}
```