Skip to content

Instantly share code, notes, and snippets.

@wendal
Created September 15, 2012 09:28
Show Gist options
  • Save wendal/3727110 to your computer and use it in GitHub Desktop.
Save wendal/3727110 to your computer and use it in GitHub Desktop.
简单演示go通过http服务静态文件
package main
import (
"log"
"net/http"
)
func main() {
log.Fatal(http.ListenAndServe(":8080", http.FileServer(http.Dir("/tmp"))))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment