mirror of
https://github.com/neilalexander/yggmail.git
synced 2026-04-20 17:16:28 +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
|
|
}
|