refactoring: rename packer templates and the resulting images to make it
[arvados-dev.git] / costanalyzer / usage.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 package main
6
7 import (
8   "flag"
9   "fmt"
10   "os"
11 )
12
13 func usage(fs *flag.FlagSet) {
14   fmt.Fprintf(os.Stderr, `
15 Cost Analyzer analyzes the cost of an Arvados container request and all its children.
16
17 Options:
18 `)
19   fs.PrintDefaults()
20 }