mirror of
https://github.com/mvvasilev/last_light.git
synced 2025-04-18 20:29:52 +03:00
7 lines
115 B
Go
7 lines
115 B
Go
package main
|
|
|
|
import "net/http"
|
|
|
|
func main() {
|
|
http.ListenAndServe(`:8080`, http.FileServer(http.Dir(`./web`)))
|
|
}
|