github.com/cilium/cilium@v1.16.2/pkg/datapath/linux/modules/cell.go (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright Authors of Cilium 3 4 package modules 5 6 import "github.com/cilium/hive/cell" 7 8 var Cell = cell.Module( 9 "kernel-modules-manager", 10 "Load kernel modules required by Cilium", 11 12 cell.Provide(newManager), 13 )