ygggo/internal/config/config.go

11 lines
130 B
Go
Raw Normal View History

2021-07-07 18:15:07 +01:00
package config
import (
"crypto/ed25519"
)
type Config struct {
PublicKey ed25519.PublicKey
PrivateKey ed25519.PrivateKey
}