dendrite/src/github.com/matrix-org/dendrite/clientapi/config/config.go

11 lines
236 B
Go
Raw Normal View History

package config
import "golang.org/x/crypto/ed25519"
// ClientAPI contains the config information necessary to spin up a clientapi process.
type ClientAPI struct {
ServerName string
PrivateKey ed25519.PrivateKey
KeyID string
}