Define API and implement an in-memory store.
This commit is contained in:
parent
b8a4ad02d7
commit
b01c6fb05e
4 changed files with 150 additions and 0 deletions
8
internal/config/config.go
Normal file
8
internal/config/config.go
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
package config
|
||||
|
||||
type Config struct {
|
||||
PublicKeyPath string
|
||||
PrivateKeyPath string
|
||||
}
|
||||
|
||||
var Default = Config{}
|
||||
Loading…
Add table
Add a link
Reference in a new issue