2025-07-20 00:47:03 +02:00
|
|
|
package services
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/DariusKlein/kleinCommand/common"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func RunExampleService() error {
|
|
|
|
|
return runService(common.ExampleServiceName, exampleService)
|
|
|
|
|
}
|
2025-07-20 18:46:55 +02:00
|
|
|
|
|
|
|
|
func RunParrotService() error {
|
|
|
|
|
return runService(common.ParrotServiceName, parrotService)
|
|
|
|
|
}
|