Initial commit

This commit is contained in:
Neil Alexander
2021-07-07 18:15:07 +01:00
commit ceffe7612d
26 changed files with 2130 additions and 0 deletions

10
internal/config/config.go Normal file
View File

@@ -0,0 +1,10 @@
package config
import (
"crypto/ed25519"
)
type Config struct {
PublicKey ed25519.PublicKey
PrivateKey ed25519.PrivateKey
}