Compare commits

..

No commits in common. "main" and "intern/v0.2.0" have entirely different histories.

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{
"Function1": func() string {
"halFunction1": func() string {
return "Executing HAL Function 1"
},
"Function2": func() string {
"halFunction2": 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{
"Function1": func() string {
"copFunction1": func() string {
return "Executing COP Function 1"
},
"Function2": func() string {
"copFunction2": func() string {
return "Executing COP Function 2"
},
}