10 lines
104 B
Go
10 lines
104 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
http.ListenAndServe("localhost:4000", nil)
|
||
|
}
|