11 lines
130 B
Go
11 lines
130 B
Go
|
|
package config
|
||
|
|
|
||
|
|
import (
|
||
|
|
"crypto/ed25519"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Config struct {
|
||
|
|
PublicKey ed25519.PublicKey
|
||
|
|
PrivateKey ed25519.PrivateKey
|
||
|
|
}
|