14 lines
137 B
Go
14 lines
137 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
func main() {
|
|
r := mux.NewRouter()
|
|
|
|
http.ListenAndServe(":8080", r)
|
|
}
|