26 lines
772 B
Markdown
26 lines
772 B
Markdown
|
|
# Flughafen-Simulation ✈️
|
|
|
|
Dieses Projekt ist eine **Flughafensimulation in Go**, die zentrale Prozesse eines Flughafens modelliert.
|
|
|
|
## Inhalte
|
|
- **Check-in** von Passagieren
|
|
- **Gepäckabfertigung**
|
|
- **Sicherheitskontrolle**
|
|
- **Boarding am Gate**
|
|
- **Start- und Landebahn-Management**
|
|
|
|
## Technische Umsetzung
|
|
- Implementiert in **Go**
|
|
- Nutzung von **Goroutines** und **Channels** zur parallelen Verarbeitung
|
|
- **Unit-Tests** zur Überprüfung der Kernfunktionen
|
|
|
|
## Projektstruktur
|
|
- `main.go` → Einstiegspunkt der Simulation
|
|
- `checkin/` → Prozesse am Check-in-Schalter
|
|
- `baggageHandling/` → Gepäckabfertigung
|
|
- `securityCheck/` → Sicherheitskontrolle
|
|
- `runway/` → Start- und Landebahn-Logik
|
|
- `tests/` → Unit-Tests
|
|
|