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