Skip to content

Instantly share code, notes, and snippets.

@selfup
Last active January 9, 2019 05:10
Show Gist options
  • Save selfup/9466e8b8ca436eef293011e5148b3d90 to your computer and use it in GitHub Desktop.
Save selfup/9466e8b8ca436eef293011e5148b3d90 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/http"
"github.com/selfup/horde"
)
func main() {
hordeManager := horde.Boot()
res := hordeManager.Ping()
fmt.Println(res)
http.ListenAndServe(":8080", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment