https://github.com/cilium/cilium
Raw File
Tip revision: 17b0dbd4a8c4b55ffdc4a65340ad939a2d63e1d3 authored by Joe Stringer on 23 February 2022, 21:09:05 UTC
Prepare for release v1.11.2
Tip revision: 17b0dbd
main.go
// SPDX-License-Identifier: Apache-2.0
// Copyright 2017 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.17
// +build go1.17

package main

import "github.com/cilium/cilium/cilium-health/cmd"

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