mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 00:45:43 +03:00
22 lines
437 B
Go
22 lines
437 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package main
|
|
|
|
import (
|
|
log "github.com/hashicorp/go-hclog"
|
|
|
|
"github.com/hashicorp/nomad/plugins"
|
|
"github.com/hashicorp/nomad/plugins/device/cmd/example"
|
|
)
|
|
|
|
func main() {
|
|
// Serve the plugin
|
|
plugins.Serve(factory)
|
|
}
|
|
|
|
// factory returns a new instance of our example device plugin
|
|
func factory(log log.Logger) interface{} {
|
|
return example.NewExampleDevice(log)
|
|
}
|