Revision 4d41865251286a2adbe25854325bbb9416cccde3 authored by André Martins on 21 June 2024, 09:25:06 UTC, committed by André Martins on 21 June 2024, 10:53:50 UTC
Add google/cloud-sdk and docker/build-push-action to the list of
trusted dependencies for auto-merge PRs.

Signed-off-by: André Martins <andre@cilium.io>
1 parent 63b7bc5
Raw File
cell.go
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium

package srv6map

import "github.com/cilium/hive/cell"

var Cell = cell.Module(
	"srv6map",
	"SRv6 Maps",
	cell.Provide(
		newPolicyMaps,
		newVRFMaps,
		newSIDMap,
	),
	cell.Invoke(cleanupStateMap),
)
back to top