kleinCommand/services/services.go

14 lines
268 B
Go
Raw Normal View History

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)
}