github.com/mhilton/juju-juju@v0.0.0-20150901100907-a94dd2c73455/apiserver/agent/agent.go (about)

     1  // Copyright 2013 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  // The machine package implements the API interfaces
     5  // used by the machine agent.
     6  package agent
     7  
     8  import (
     9  	"github.com/juju/juju/apiserver/common"
    10  )
    11  
    12  func init() {
    13  	common.RegisterStandardFacade("Agent", 0, NewAgentAPIV0)
    14  	common.RegisterStandardFacade("Agent", 1, NewAgentAPIV1)
    15  }