Revision a4f8eb35c98941af43dd658c969e9ab409252bf0 authored by Maciej Kwiek on 10 May 2024, 12:16:24 UTC, committed by Maciej Kwiek on 10 May 2024, 12:34:31 UTC
Signed-off-by: Maciej Kwiek <maciej@isovalent.com>
1 parent 5a518aa
Raw File
main.go
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium

package main

import (
	"fmt"
	"os"

	"github.com/cilium/cilium/bugtool/cmd"
)

func main() {
	if err := cmd.BugtoolRootCmd.Execute(); err != nil {
		fmt.Println(err)
		os.Exit(1)
	}
}
back to top