blob: ba4732693062344894ead71a8b9d8adee645eb87 [file] [log] [blame] [edit]
package main
import (
"flag"
"cos-extensions/commands"
)
func init() {
// Set glog to log to stderr.
flag.Set("logtostderr", "true")
}
func main() {
commands.Execute()
}