third commit

This commit is contained in:
Marco Kittel 2025-06-08 23:22:26 +02:00
parent 313dbdc5c9
commit e879e0cf19
1 changed files with 4 additions and 4 deletions

View File

@ -9,10 +9,10 @@ type BusinessLogik struct{}
func (b *BusinessLogik) GetHAL() map[string]func() string {
return map[string]func() string{
"halFunction1": func() string {
"Function1": func() string {
return "Executing HAL Function 1"
},
"halFunction2": func() string {
"Function2": func() string {
return "Executing HAL Function 1"
},
}
@ -20,10 +20,10 @@ func (b *BusinessLogik) GetHAL() map[string]func() string {
func (b *BusinessLogik) GetCOP() map[string]func() string {
return map[string]func() string{
"copFunction1": func() string {
"Function1": func() string {
return "Executing COP Function 1"
},
"copFunction2": func() string {
"Function2": func() string {
return "Executing COP Function 2"
},
}