keel/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

10 lines
100 B
Go

package keel
import (
"errors"
)
var (
ErrServerNotRunning = errors.New("server not running")
)