huffman-archiver/cmd/root.go

19 lines
237 B
Go
Raw Normal View History

2022-01-31 14:54:53 +05:00
package cmd
import (
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "huffman",
Short: "An archiver that uses Huffman code for compression",
}
func Execute() {
cobra.CheckErr(rootCmd.Execute())
}
func init() {
}