Rename project to mandelmapper

This commit is contained in:
Steven Polley 2018-07-31 20:10:23 -06:00
parent 671912e2ec
commit 1ba61f095d
3 changed files with 2 additions and 2 deletions

2
.vscode/tasks.json vendored
View File

@ -6,7 +6,7 @@
{ {
"label": "go build", "label": "go build",
"type": "shell", "type": "shell",
"command": "go build", "command": "cd mandelmapper ; go build",
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true

View File

@ -75,7 +75,7 @@ func main() {
colors = interpolateColors("Plan9", colorStep) colors = interpolateColors("Plan9", colorStep)
fmt.Println(len(colors)) fmt.Println(len(colors))
log.Fatal(http.ListenAndServe(":6161", nil)) log.Fatal(http.ListenAndServe(":80", nil))
} }
func renderTile(w http.ResponseWriter, r *http.Request) { func renderTile(w http.ResponseWriter, r *http.Request) {