You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
static-file-server/bin/serve/main.go

13 lines
173 B

package main
import (
"log"
"github.com/halverneus/static-file-server/cli"
)
func main() {
if err := cli.Execute(); nil != err {
log.Fatalf("Error: %v\n", err)
}
}