mirror of
https://github.com/foomo/keel.git
synced 2025-10-16 12:35:34 +00:00
11 lines
159 B
Go
11 lines
159 B
Go
package keel
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrServerNotRunning = errors.New("server not running")
|
|
ErrServiceNotRunning = errors.New("service not running")
|
|
)
|