github.com/bigcommerce/nomad@v0.9.3-bc/helper/pluginutils/catalog/register_linux.go (about)

     1  package catalog
     2  
     3  import (
     4  	"github.com/hashicorp/nomad/drivers/rkt"
     5  )
     6  
     7  // This file is where all builtin plugins should be registered in the catalog.
     8  // Plugins with build restrictions should be placed in the appropriate
     9  // register_XXX.go file.
    10  func init() {
    11  	RegisterDeferredConfig(rkt.PluginID, rkt.PluginConfig, rkt.PluginLoader)
    12  }