You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
506 B
29 lines
506 B
6 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gorilla/mux"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
server *http.Server
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
Port = "313131"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
addr := net.JoinHostPort("", Port)
|
||
|
|
||
|
router := mux.NewRouter()
|
||
|
// Set up router for blocks.
|
||
|
// s.router.Path("/blocks").Queries("from", "{[0-9]*?}", "to", "{[0-9]*?}").HandlerFunc(s.GetExplorerBlocks).Methods("GET")
|
||
|
// s.router.Path("/blocks").HandlerFunc(s.GetExplorerBlocks)
|
||
|
|
||
|
server := &http.Server{Addr: addr, Handler: router}
|
||
|
server.ListenAndServe()
|
||
|
}
|