Define API and implement an in-memory store.

This commit is contained in:
Mariano Uvalle 2023-11-06 01:48:10 +00:00
parent b8a4ad02d7
commit b01c6fb05e
4 changed files with 150 additions and 0 deletions

View file

@ -0,0 +1,8 @@
package config
type Config struct {
PublicKeyPath string
PrivateKeyPath string
}
var Default = Config{}