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
2020-04-27 09:53:21 +02:00

10 lines
116 B
Go

package main
import (
"net/http"
)
func main() {
http.ListenAndServe(`:8002`, http.FileServer(http.Dir(`.`)))
}