github.com/cilium/cilium@v1.16.2/operator/pkg/bgpv2/cell.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright Authors of Cilium
     3  
     4  package bgpv2
     5  
     6  import (
     7  	"github.com/cilium/hive/cell"
     8  )
     9  
    10  var Cell = cell.Module(
    11  	"bgp-cp-operator",
    12  	"BGP Control Plane Operator",
    13  	cell.Invoke(registerBGPResourceManager),
    14  )