A Go library to queries on different game servers
package main
import (
"fmt"
"github.com/Seyz123/goquery"
)
func main() {
data, err := goquery.Query("play.symp.fr", 19132)
if err != nil {
panic(err)
}
fmt.Println("Server is running " + data.Software)
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
This project is licensed under the Apache 2.0 license.