Commit 1672ca53 authored by clabby's avatar clabby

@tynes review

parent 00250cb2
package main package main
import "os" import (
"log"
"os"
)
func main() { func main() {
switch os.Args[1] { switch os.Args[1] {
...@@ -8,5 +11,7 @@ func main() { ...@@ -8,5 +11,7 @@ func main() {
DiffTestUtils() DiffTestUtils()
case "trie": case "trie":
FuzzTrie() FuzzTrie()
default:
log.Fatal("Must pass a subcommand")
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment