Ubuntu Pastebin

Paste from Erik Arfvidson at Wed, 23 Mar 2016 19:59:47 +0000

Download as text
1
2
3
4
5
package main
import "net/http"
func main() {
    panic(http.ListenAndServe(":8080", http.FileServer(http.Dir("."))))
}
Download as text