Skip to content

invliD/palworld-rcon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

palworld-rcon

GitHub Build Go Report Card Go Reference

Install

go get github.com/invliD/palworld-rcon

Usage

package main

import (
	"fmt"
	"log"

	palworldrcon "github.com/invliD/palworld-rcon"
)

func main() {
	client := palworldrcon.NewClient("127.0.0.1:25575", "password")
	defer client.Close()

	info, err := client.Info()
	if err != nil {
		log.Fatal(err)
	}

	fmt.Printf("Connected to server '%s' running version %s!\n", info.ServerName, info.Version)
}

License

MIT License, see LICENSE

About

A golang library for interacting with Palworld RCON servers

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages