mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 10:27:26 +08:00
* v2.1.0 [omit consensus and adjacent] - this commit will be amended with the full release after the file copy is complete * 2.1.0 main node rollup
31 lines
342 B
Go
31 lines
342 B
Go
//
|
|
// main.go
|
|
//
|
|
// Copyright (c) 2019-2023 Markku Rossi
|
|
//
|
|
// All rights reserved.
|
|
//
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
|
|
log.SetFlags(0)
|
|
|
|
if len(flag.Args()) == 0 {
|
|
fmt.Printf("no files specified\n")
|
|
os.Exit(1)
|
|
}
|
|
if err := dumpObjects(flag.Args()); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|