This repository has been archived on 2021-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
2020-coding-projects/mandelbrot-webassembly/main.go

10 lines
116 B
Go
Raw Normal View History

2020-04-27 07:53:21 +00:00
package main
import (
"net/http"
)
func main() {
http.ListenAndServe(`:8002`, http.FileServer(http.Dir(`.`)))
}