keel/service/errors.go
Kevin Franklin Kim 07f0c394d5
feat: add GoRoutine service
moves all services into the service package
2023-09-08 12:17:23 +02:00

11 lines
175 B
Go

package service
import (
"github.com/pkg/errors"
)
var (
ErrServiceNotRunning = errors.New("service not running")
ErrServiceShutdown = errors.New("service shutdown")
)