You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
303 B
12 lines
303 B
//This file was modified from the original work, https://github.com/xenserver/docker-machine-driver-xenserver
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/docker/machine/libmachine/drivers/plugin"
|
|
"github.com/interlegis/docker-machine-driver-xcp/xcp"
|
|
)
|
|
|
|
func main() {
|
|
plugin.RegisterDriver(xcp.NewDriver())
|
|
}
|
|
|