https://github.com/cilium/cilium
Raw File
Tip revision: 4061cdfc83370200e3f9a0c5a782ca17a288ae71 authored by Michi Mutsuzaki on 14 June 2023, 03:37:39 UTC
Prepare for release v1.13.4
Tip revision: 4061cdf
main.go
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium

// Ensure build fails on versions of Go that are not supported by Cilium.
// This build tag should be kept in sync with the version specified in go.mod.
//go:build go1.19

package main

import "github.com/cilium/cilium/operator/cmd"

func main() {
	cmd.Execute()
}
back to top