mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
e65cfe1e3d
Signed-off-by: FluorineDog <guilin.gou@zilliz.com>
18 lines
298 B
Go
18 lines
298 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/storage"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) == 1 {
|
|
fmt.Println("usage: binlog file1 file2 ...")
|
|
}
|
|
if err := storage.PrintBinlogFiles(os.Args[1:]); err != nil {
|
|
fmt.Printf("error: %s\n", err.Error())
|
|
}
|
|
}
|