SimpleFileServer/Main.go

11 lines
111 B
Go
Raw Permalink Normal View History

2018-09-13 13:30:32 +00:00
package main
import (
"fileserver/cli"
)
// The entry point of the application.
func main() {
cli.Init()
}