10 lines
173 B
Go
10 lines
173 B
Go
package services
|
|
|
|
import (
|
|
"github.com/DariusKlein/kleinCommand/common"
|
|
)
|
|
|
|
func RunExampleService() error {
|
|
return runService(common.ExampleServiceName, exampleService)
|
|
}
|