Skip to content

Folding@home client API wrapper for Go

License

Notifications You must be signed in to change notification settings

MakotoE/go-fahapi

Repository files navigation

GoDoc

Folding@home client API wrapper for Go

package main

import "github.com/MakotoE/go-fahapi"

func main() {
	api, err := fahapi.Dial(fahapi.DefaultAddr)
	if err != nil {
		panic(err)
	}
	defer api.Close()

	if err := api.PauseAll(); err != nil {
		panic(err)
	}

	if err := api.UnpauseAll(); err != nil {
		panic(err)
	}
}

Prefer Rust?

About

Folding@home client API wrapper for Go

Topics

Resources

License

Stars

Watchers

Forks