ncsa to json converter written in Go

A very simple application written in Go. It parses Apache Common Logs and returns json instead. Incredibly simple but works incredibly fast also. package main import ( "fmt" "strings" "encoding/json" "bufio" "os" ) func main() { type Request struct { Client string `json:…