mirror of
https://github.com/lxc/incus.git
synced 2026-02-06 12:46:34 +01:00
12 lines
250 B
Go
12 lines
250 B
Go
package network
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// ErrUnknownDriver is the "Unknown driver" error.
|
|
var ErrUnknownDriver = errors.New("Unknown driver")
|
|
|
|
// ErrNotImplemented is the "Not implemented" error.
|
|
var ErrNotImplemented = errors.New("Not implemented")
|