blob: 54d04d08aabcfd9b340cf28b70d2fe76dda4ba23 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package main
import (
"context"
"flag"
"os"
"github.com/google/subcommands"
)
func main() {
subcommands.Register(&MakeHistogramCommand{}, "")
subcommands.Register(&UploadCommand{}, "")
flag.Parse()
os.Exit(int(subcommands.Execute(context.Background())))
}