Last active
January 9, 2019 05:10
-
-
Save selfup/9466e8b8ca436eef293011e5148b3d90 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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