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