Skip to content

Instantly share code, notes, and snippets.

View caylorme's full-sized avatar

Jason Caylor caylorme

  • Caylor.me
  • Atlanta, Ga
View GitHub Profile
/* Tiny web server in Golang for sharing a folder
Copyright (c) 2010 Alexis ROBERT <[email protected]>
Contains some code from Golang's http.ServeFile method, and
uses lighttpd's directory listing HTML template. */
package main
import "http"
import "io"