mirror of
https://github.com/neilalexander/yggmail.git
synced 2026-04-24 11:06:27 +03:00
11 lines
130 B
Go
11 lines
130 B
Go
package config
|
|
|
|
import (
|
|
"crypto/ed25519"
|
|
)
|
|
|
|
type Config struct {
|
|
PublicKey ed25519.PublicKey
|
|
PrivateKey ed25519.PrivateKey
|
|
}
|