Compare commits

..

No commits in common. "main" and "kunde/v0.1.0" have entirely different histories.

1 changed files with 0 additions and 33 deletions

View File

@ -1,33 +0,0 @@
package intern
type FunctionsProvider interface {
GetHAL() map[string]func() string
GetCOP() map[string]func() string
}
type BusinessLogik struct{}
func (b *BusinessLogik) GetHAL() map[string]func() string {
return map[string]func() string{
"Function1": func() string {
return "Executing HAL Function 1"
},
"Function2": func() string {
return "Executing HAL Function 1"
},
}
}
func (b *BusinessLogik) GetCOP() map[string]func() string {
return map[string]func() string{
"Function1": func() string {
return "Executing COP Function 1"
},
"Function2": func() string {
return "Executing COP Function 2"
},
}
}
func NewBusinessLogik() FunctionsProvider {
return &BusinessLogik{}
}